mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
fix sass syntax
This commit is contained in:
@@ -8,6 +8,8 @@
|
|||||||
// For a copy, see <https://opensource.org/licenses/MIT>.
|
// For a copy, see <https://opensource.org/licenses/MIT>.
|
||||||
//
|
//
|
||||||
|
|
||||||
|
@use 'sass:color';
|
||||||
|
|
||||||
$--theme-hue: 0;
|
$--theme-hue: 0;
|
||||||
$--theme-saturation: 0%;
|
$--theme-saturation: 0%;
|
||||||
|
|
||||||
@@ -208,7 +210,10 @@ $--card-background-color: $--theme-bg-4;
|
|||||||
|
|
||||||
:root {
|
:root {
|
||||||
--group-calendar-event-bg: #{$--calendar-selected-background-color};
|
--group-calendar-event-bg: #{$--calendar-selected-background-color};
|
||||||
--group-calendar-badge-following: #{darken($--theme-primary, 20%)};
|
--group-calendar-badge-following: #{color.adjust(
|
||||||
|
$--theme-primary,
|
||||||
|
$lightness: 20%
|
||||||
|
)};
|
||||||
--group-calendar-badge-normal: #{$--theme-info};
|
--group-calendar-badge-normal: #{$--theme-info};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -280,11 +285,11 @@ $--card-background-color: $--theme-bg-4;
|
|||||||
}
|
}
|
||||||
|
|
||||||
.el-timeline-item__tail {
|
.el-timeline-item__tail {
|
||||||
border-left-color: #{darken($--theme-primary, 20%)} !important;
|
border-left-color: #{color.adjust($--theme-primary, $lightness: 20%)} !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-timeline-item__node {
|
.el-timeline-item__node {
|
||||||
background-color: #{darken($--theme-primary, 20%)} !important;
|
background-color: #{color.adjust($--theme-primary, $lightness: 20%)} !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-popper[data-popper-placement^='top'] .el-popper__arrow {
|
.el-popper[data-popper-placement^='top'] .el-popper__arrow {
|
||||||
|
|||||||
Reference in New Issue
Block a user