diff --git a/layouts/shortcodes/audio.html b/layouts/shortcodes/audio.html
index a8e3b01..52fe632 100644
--- a/layouts/shortcodes/audio.html
+++ b/layouts/shortcodes/audio.html
@@ -2,8 +2,14 @@
.audio-player {
display: flex;
flex-direction: row;
+ align-items: center;
+ justify-content:center;
width: 100%;
}
+ .audio-player>*{
+ height:fit-content;
+ padding:0.25rem;
+ }
.audio-player p{
width: fit-content;
}
@@ -31,15 +37,22 @@
.icon svg{
width:2.25rem;
+ height:2.25rem;
z-index: -1;
background-color: transparent;
pointer-events: none;
}
-.icon path{
- stroke:var(--theme-accent);
- fill:var(--theme-accent);
-}
+.icon path,
+ .icon rect {
+ stroke: var(--theme-accent);
+ fill: var(--theme-accent);
+ }
+.icon svg circle {
+ stroke: var(--theme-accent);
+ fill: transparent;
+ stroke-width: 6;
+}
@keyframes spin-icon {
0%{rotate:0;}
100%{rotate:360deg;}
@@ -54,7 +67,7 @@