This commit is contained in:
Le Van Duc 2023-11-24 09:44:08 +07:00
parent 23cbf32455
commit 4f042548cf
3 changed files with 10 additions and 14 deletions

View file

@ -437,10 +437,10 @@ ul.problem-list {
margin-right: auto; margin-right: auto;
} }
@media screen and (min-width: 1100px) { @media screen and (min-width: 11000px) {
.d-flex-problem { .d-flex-problem {
display: -webkit-box !important; display: -webkit-box;
display: -ms-flexbox !important; display: -ms-flexbox;
display: flex !important; display: flex;
} }
} }

View file

@ -5,6 +5,7 @@ $background_gray: #ededed;
$background_light_gray: #fafafa; $background_light_gray: #fafafa;
$announcement_red: #ae0000; $announcement_red: #ae0000;
$theme_color: #9c3706; $theme_color: #9c3706;
$sucess: #28a745;
$base_font_size: 14px; $base_font_size: 14px;
$widget_border_radius: 0.5em; $widget_border_radius: 0.5em;

View file

@ -743,11 +743,6 @@ ul.errorlist {
} }
} }
:root {
--green: #28a745;
}
@media (prefers-reduced-motion: reduce) { @media (prefers-reduced-motion: reduce) {
.btn { .btn {
-webkit-transition: none; -webkit-transition: none;
@ -886,8 +881,8 @@ button:hover, button:focus {
.btn.btn-primary { .btn.btn-primary {
color: #fff; color: #fff;
background: var(--green); background: $sucess;
border-color: var(--green); border-color: $sucess;
} }
.btn.btn-disabled { .btn.btn-disabled {
@ -897,12 +892,12 @@ button:hover, button:focus {
} }
.btn.btn-primary:hover, .btn.btn-primary:focus { .btn.btn-primary:hover, .btn.btn-primary:focus {
border-color: green !important; border-color: green;
background: green !important; background: green;
} }
.btn.btn-primary .icon i { .btn.btn-primary .icon i {
color: var(--green); color: $sucess;
} }
.btn.btn-round { .btn.btn-round {