Skip to content

Commit 84e6cf2

Browse files
committed
Make buttons bigger for weekly summary
1 parent c73c8eb commit 84e6cf2

File tree

1 file changed

+28
-6
lines changed

1 file changed

+28
-6
lines changed

static/style.css

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1378,19 +1378,34 @@ audio {
13781378
color: var(--accent-secondary);
13791379
font-size: 1.5rem;
13801380
cursor: pointer;
1381-
background: none;
1382-
border: none;
1383-
padding: 0;
13841381
transition: all 0.2s ease;
1382+
padding: 0;
1383+
min-width: 52px;
1384+
min-height: 52px;
1385+
flex: 1;
1386+
display: flex;
1387+
align-items: center;
1388+
justify-content: center;
1389+
border-radius: 14px;
1390+
background: var(--bg-elevated);
1391+
box-shadow: var(--neu-flat);
1392+
border: none;
1393+
outline: none;
13851394
}
13861395

13871396
.summary-action-btn:hover {
1388-
color: var(--accent-primary);
1389-
transform: scale(1.1);
1397+
box-shadow: var(--neu-raised-sm);
1398+
transform: translateY(-1px);
13901399
}
13911400

13921401
.summary-action-btn:active {
1393-
transform: scale(0.95);
1402+
transform: translateY(0);
1403+
box-shadow: var(--neu-pressed);
1404+
}
1405+
1406+
.summary-action-btn:focus-visible {
1407+
outline: 2px solid var(--accent-primary);
1408+
outline-offset: 2px;
13941409
}
13951410

13961411
.summary-action-btn.queue-btn {
@@ -1815,6 +1830,13 @@ audio {
18151830
min-height: 44px;
18161831
flex: 0 0 auto;
18171832
}
1833+
1834+
.summary-action-btn {
1835+
font-size: 1.1rem;
1836+
min-width: 44px;
1837+
min-height: 44px;
1838+
flex: 0 0 auto;
1839+
}
18181840
}
18191841

18201842
/* Footer */

0 commit comments

Comments
 (0)