admin ui featured blogs

This commit is contained in:
2024-05-09 23:26:06 +02:00
parent 8f5069e207
commit 1e75744b7b
19 changed files with 266 additions and 17 deletions

View File

@ -554,6 +554,10 @@ video {
--tw-contain-style: ;
}
.row-span-3 {
grid-row: span 3 / span 3;
}
.m-1 {
margin: 0.25rem;
}
@ -596,16 +600,6 @@ video {
margin-right: 1.5rem;
}
.my-0 {
margin-top: 0px;
margin-bottom: 0px;
}
.my-0\.5 {
margin-top: 0.125rem;
margin-bottom: 0.125rem;
}
.my-12 {
margin-top: 3rem;
margin-bottom: 3rem;
@ -653,6 +647,10 @@ video {
display: flex;
}
.grid {
display: grid;
}
.hidden {
display: none;
}
@ -685,6 +683,14 @@ video {
flex-grow: 1;
}
.grid-flow-col {
grid-auto-flow: column;
}
.grid-rows-3 {
grid-template-rows: repeat(3, minmax(0, 1fr));
}
.flex-row {
flex-direction: row;
}
@ -713,6 +719,10 @@ video {
justify-content: space-between;
}
.gap-4 {
gap: 1rem;
}
.rounded {
border-radius: 0.25rem;
}