Changing UX for simpler design

This commit is contained in:
2025-04-05 16:37:53 +01:00
parent 5b9119a528
commit be5c9dc3be
358 changed files with 30915 additions and 88568 deletions

View File

@@ -0,0 +1,21 @@
@mixin popover-style($background-color){
background-color: $background-color;
color: $white-color;
.popover-title{
background-color: $background-color;
color: rgba(0, 0, 0, 0.56);
}
&.bottom .arrow:after{
border-bottom-color: $background-color;
}
&.left > .arrow::after{
border-left-color: $background-color;
}
&.top > .arrow::after{
border-top-color: $background-color;
}
&.right > .arrow::after{
border-right-color: $background-color;
}
}