Refactoring: new background selector

This commit is contained in:
Pieter Vander Vennet 2023-05-18 15:44:54 +02:00
parent 5427a4cb05
commit 82093ffdf4
25 changed files with 658 additions and 269 deletions

View file

@ -715,14 +715,14 @@ video {
bottom: 0px;
}
.right-0 {
right: 0px;
}
.right-1\/3 {
right: 33.333333%;
}
.right-0 {
right: 0px;
}
.right-10 {
right: 2.5rem;
}
@ -1105,6 +1105,10 @@ video {
width: fit-content;
}
.w-24 {
width: 6rem;
}
.w-4 {
width: 1rem;
}
@ -1142,10 +1146,6 @@ video {
width: 24rem;
}
.w-24 {
width: 6rem;
}
.w-10 {
width: 2.5rem;
}
@ -1245,6 +1245,14 @@ video {
resize: both;
}
.grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-row {
flex-direction: row;
}
@ -1297,6 +1305,10 @@ video {
gap: 1rem;
}
.gap-2 {
gap: 0.5rem;
}
.gap-y-1 {
row-gap: 0.25rem;
}
@ -1388,6 +1400,10 @@ video {
border-radius: 0.75rem;
}
.rounded-2xl {
border-radius: 1rem;
}
.rounded-lg {
border-radius: 0.5rem;
}
@ -1554,6 +1570,11 @@ video {
padding-right: 0.25rem;
}
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}
.py-4 {
padding-top: 1rem;
padding-bottom: 1rem;
@ -1569,11 +1590,6 @@ video {
padding-right: 0.5rem;
}
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}
.pb-12 {
padding-bottom: 3rem;
}
@ -1722,6 +1738,11 @@ video {
letter-spacing: -0.025em;
}
.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-gray-900 {
--tw-text-opacity: 1;
color: rgb(17 24 39 / var(--tw-text-opacity));
@ -1742,11 +1763,6 @@ video {
color: rgb(22 163 74 / var(--tw-text-opacity));
}
.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline {
text-decoration-line: underline;
}
@ -2270,6 +2286,10 @@ select:hover {
color: var(--background-color);
}
.bg-black-transparent {
background-color: #00000088;
}
.block-ruby {
display: block ruby;
}
@ -2289,6 +2309,10 @@ select:hover {
display: none;
}
.no-weblate weblate {
display: none;
}
.link-underline a {
-webkit-text-decoration: underline 1px var(--foreground-color);
text-decoration: underline 1px var(--foreground-color);