Add video/audio delete button

This commit is contained in:
Carl Pearson
2024-09-24 05:48:17 -06:00
parent 33041a0b57
commit cbea8afa2d
4 changed files with 95 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
button {
all: unset;
cursor: pointer;
}
.media-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
@@ -46,6 +51,20 @@
border-radius: 4px;
}
.media-controls {
text-align: center;
padding-bottom: 15px;
}
.media-controls button {
display: inline-block;
padding: 10px 15px;
background-color: red;
color: white;
text-decoration: none;
border-radius: 4px;
}
/* narrower than 600px */
@media (max-width: 600px) {
.media-grid {