This commit is contained in:
TheGiddyLimit
2024-03-10 21:53:34 +00:00
parent b323d4123e
commit f00d1f3833
272 changed files with 24017 additions and 9350 deletions

View File

@@ -1,8 +1,8 @@
@import "vars";
@use "vars";
.clickable {
&--link {
color: $rgb-link-blue !important;
color: vars.$rgb-link-blue !important;
}
}
@@ -13,7 +13,7 @@
}
.fade {
transition: opacity $time-3-frames linear;
transition: opacity vars.$time-3-frames linear;
}
.float-clear {
@@ -23,28 +23,28 @@
.stripe- {
&even {
&:nth-child(even) {
background: $rgb-stripe-grey;
background: vars.$rgb-stripe-grey;
}
&--faint:nth-child(even) {
background: $rgb-stripe-grey--faint;
background: vars.$rgb-stripe-grey--faint;
}
}
&odd {
&:nth-child(odd) {
background: $rgb-stripe-grey;
background: vars.$rgb-stripe-grey;
}
&--faint:nth-child(odd) {
background: $rgb-stripe-grey--faint;
background: vars.$rgb-stripe-grey--faint;
}
}
&child- {
&even-first {
&:nth-child(even) > :first-child {
background: $rgb-stripe-grey;
background: vars.$rgb-stripe-grey;
}
}
}
@@ -54,7 +54,7 @@
&__ {
&ele-hoverable {
&:hover {
background: $rgb-bg--alt;
background: vars.$rgb-bg--alt;
}
}
}