few styling

This commit is contained in:
2024-08-07 19:21:29 +02:00
parent 5365cb5409
commit fdfa69c4b4
3 changed files with 27 additions and 23 deletions

View File

@ -624,16 +624,6 @@ video {
margin-bottom: 1.5rem;
}
.mx-1 {
margin-left: 0.25rem;
margin-right: 0.25rem;
}
.my-1 {
margin-top: 0.25rem;
margin-bottom: 0.25rem;
}
.mb-1 {
margin-bottom: 0.25rem;
}
@ -654,10 +644,6 @@ video {
margin-top: 0.75rem;
}
.mt-1 {
margin-top: 0.25rem;
}
.block {
display: block;
}
@ -686,6 +672,10 @@ video {
aspect-ratio: 16 / 9;
}
.aspect-\[4\/3\] {
aspect-ratio: 4/3;
}
.h-0 {
height: 0px;
}
@ -722,6 +712,10 @@ video {
width: 1.75rem;
}
.w-full {
width: 100%;
}
.flex-grow {
flex-grow: 1;
}
@ -833,6 +827,16 @@ video {
fill: #172554;
}
.object-contain {
-o-object-fit: contain;
object-fit: contain;
}
.object-cover {
-o-object-fit: cover;
object-fit: cover;
}
.p-0 {
padding: 0px;
}