mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 09:30:31 +03:00
Fix some CSS coding styles
This commit is contained in:
parent
4d8477a32c
commit
9f2b0f7c6b
5 changed files with 7 additions and 7 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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)));
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue