Spaces:
Running
Running
Anonymous commited on
Commit ·
ee20cb9
1
Parent(s): 9a4ca04
Show five audio blocks per row
Browse files- static/css/index.css +7 -3
static/css/index.css
CHANGED
|
@@ -195,8 +195,8 @@ body {
|
|
| 195 |
|
| 196 |
.audio-grid {
|
| 197 |
display: grid;
|
| 198 |
-
grid-template-columns: repeat(
|
| 199 |
-
gap: 0.
|
| 200 |
margin: 0 1rem;
|
| 201 |
border-top: 1px solid var(--line);
|
| 202 |
padding: 0.9rem 0 1rem;
|
|
@@ -243,7 +243,7 @@ body {
|
|
| 243 |
|
| 244 |
audio {
|
| 245 |
display: block;
|
| 246 |
-
width:
|
| 247 |
min-width: 0;
|
| 248 |
}
|
| 249 |
|
|
@@ -265,4 +265,8 @@ audio {
|
|
| 265 |
.task-directory {
|
| 266 |
grid-template-columns: 1fr;
|
| 267 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 268 |
}
|
|
|
|
| 195 |
|
| 196 |
.audio-grid {
|
| 197 |
display: grid;
|
| 198 |
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
| 199 |
+
gap: 0.7rem;
|
| 200 |
margin: 0 1rem;
|
| 201 |
border-top: 1px solid var(--line);
|
| 202 |
padding: 0.9rem 0 1rem;
|
|
|
|
| 243 |
|
| 244 |
audio {
|
| 245 |
display: block;
|
| 246 |
+
width: 100%;
|
| 247 |
min-width: 0;
|
| 248 |
}
|
| 249 |
|
|
|
|
| 265 |
.task-directory {
|
| 266 |
grid-template-columns: 1fr;
|
| 267 |
}
|
| 268 |
+
|
| 269 |
+
.audio-grid {
|
| 270 |
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
| 271 |
+
}
|
| 272 |
}
|