Style: copyright button

This commit is contained in:
Pieter Vander Vennet 2023-06-01 02:52:10 +02:00
parent 08a604c3f5
commit 8ed4da4e9d
2 changed files with 21 additions and 9 deletions

View file

@ -1005,6 +1005,12 @@ video {
height: 1.5rem;
}
.h-fit {
height: -webkit-fit-content;
height: -moz-fit-content;
height: fit-content;
}
.h-4 {
height: 1rem;
}
@ -1017,12 +1023,6 @@ video {
height: 0.75rem;
}
.h-fit {
height: -webkit-fit-content;
height: -moz-fit-content;
height: fit-content;
}
.h-7 {
height: 1.75rem;
}
@ -1055,6 +1055,10 @@ video {
height: 24rem;
}
.max-h-2 {
max-height: 0.5rem;
}
.max-h-12 {
max-height: 3rem;
}
@ -1071,6 +1075,14 @@ video {
max-height: 100vh;
}
.max-h-4 {
max-height: 1rem;
}
.max-h-6 {
max-height: 1.5rem;
}
.w-full {
width: 100%;
}