Fix invalid rgba in stylesheet

This commit is contained in:
Artur Pata 2024-08-12 11:22:22 +03:00
parent 5e2a9563f7
commit 7d8b1cc19a
3 changed files with 5 additions and 5 deletions

View File

@ -166,7 +166,7 @@ blockquote {
right: 8px;
left: auto;
border: 8px solid transparent;
border-bottom-color: rgba(27 31 35 15%);
border-bottom-color: rgb(27 31 35 / 15%);
}
.dropdown-content::before,
@ -263,7 +263,7 @@ blockquote {
.fullwidth-shadow::before {
@apply absolute top-0 w-screen h-full bg-gray-50 dark:bg-gray-850;
box-shadow: 0 4px 2px -2px rgba(0 0 0 6%);
box-shadow: 0 4px 2px -2px rgb(0 0 0 / 6%);
content: '';
z-index: -1;
left: calc(-1 * calc(50vw - 50%));
@ -271,7 +271,7 @@ blockquote {
}
.dark .fullwidth-shadow::before {
box-shadow: 0 4px 2px -2px rgba(200 200 200 10%);
box-shadow: 0 4px 2px -2px rgb(200 200 200 / 10%);
}
iframe[hidden] {

View File

@ -96,7 +96,7 @@
}
.dark .flatpickr-day.today {
background-color: rgba(167 243 208 50%);
background-color: rgb(167 243 208 / 50%);
border-color: #34d399;
}

View File

@ -28,7 +28,7 @@
.modal__overlay {
position: fixed;
inset: 0;
background: rgba(0 0 0 60%);
background: rgb(0 0 0 / 60%);
z-index: 99;
overflow: auto;
}