Fix some CSS coding styles

This commit is contained in:
Alejandro Celaya 2023-08-04 11:17:24 +02:00
parent 4d8477a32c
commit 9f2b0f7c6b
5 changed files with 7 additions and 7 deletions

View file

@ -11,7 +11,7 @@
position: absolute; position: absolute;
right: 5px; right: 5px;
bottom: 5px; bottom: 5px;
opacity: 0.1; opacity: .1;
transform: rotate(-45deg); transform: rotate(-45deg);
} }

View file

@ -33,7 +33,7 @@
.short-urls-row__copy-hint { .short-urls-row__copy-hint {
@include vertical-align(translateX(10px)); @include vertical-align(translateX(10px));
box-shadow: 0 3px 15px rgba(0, 0, 0, .25); box-shadow: 0 3px 15px rgb(0 0 0 / .25);
@media (max-width: $responsiveTableBreakpoint) { @media (max-width: $responsiveTableBreakpoint) {
@include vertical-align(translateX(calc(-100% - 20px))); @include vertical-align(translateX(calc(-100% - 20px)));

View file

@ -71,7 +71,7 @@
.react-datepicker__time-list.react-datepicker__time-list { .react-datepicker__time-list.react-datepicker__time-list {
/* Forefox scrollbar */ /* Forefox scrollbar */
scrollbar-color: rgba(0, 0, 0, 0.5) var(--secondary-color); scrollbar-color: rgb(0 0 0 / .5) var(--secondary-color);
scrollbar-width: thin; scrollbar-width: thin;
/* Chrome webkit scrollbar */ /* Chrome webkit scrollbar */
@ -81,8 +81,8 @@
} }
&::-webkit-scrollbar-thumb { &::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.5); background-color: rgb(0 0 0 / .5);
border-radius: 0.5rem; border-radius: .5rem;
} }
} }

View file

@ -26,7 +26,7 @@
padding: .5rem 1rem 1rem; padding: .5rem 1rem 1rem;
margin: 0; margin: 0;
color: #fff; color: #fff;
background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)); background: linear-gradient(rgb(0 0 0 / .5), rgb(0 0 0 / 0));
} }
.map-modal__modal-body.map-modal__modal-body { .map-modal__modal-body.map-modal__modal-body {