Browse Source

feat(client): rename aliases

pull/6973/head
KenTandrian 3 months ago
parent
commit
61b1062ebc
  1. 24
      apps/client/src/styles.scss

24
apps/client/src/styles.scss

@ -2,8 +2,8 @@
@use 'sass:color'; @use 'sass:color';
@use './styles/bootstrap'; @use './styles/bootstrap';
@use './styles/table' as t; @use './styles/table' as table;
@use './styles/variables' as v; @use './styles/variables' as variables;
@use 'svgmap/style.min'; @use 'svgmap/style.min';
@ -13,10 +13,10 @@
--light-background: rgb(255, 255, 255); --light-background: rgb(255, 255, 255);
--dark-primary-text: --dark-primary-text:
#{color.channel(v.$dark-primary-text, 'red')}, #{color.channel(variables.$dark-primary-text, 'red')},
#{color.channel(v.$dark-primary-text, 'green')}, #{color.channel(variables.$dark-primary-text, 'green')},
#{color.channel(v.$dark-primary-text, 'blue')}, #{color.channel(variables.$dark-primary-text, 'blue')},
#{color.channel(v.$dark-primary-text, 'alpha')}; #{color.channel(variables.$dark-primary-text, 'alpha')};
--dark-secondary-text: 0, 0, 0, 0.54; --dark-secondary-text: 0, 0, 0, 0.54;
--dark-accent-text: 0, 0, 0, 0.87; --dark-accent-text: 0, 0, 0, 0.87;
--dark-warn-text: 0, 0, 0, 0.87; --dark-warn-text: 0, 0, 0, 0.87;
@ -24,10 +24,10 @@
--dark-dividers: 0, 0, 0, 0.12; --dark-dividers: 0, 0, 0, 0.12;
--dark-focused: 0, 0, 0, 0.12; --dark-focused: 0, 0, 0, 0.12;
--light-primary-text: --light-primary-text:
#{color.channel(v.$light-primary-text, 'red')}, #{color.channel(variables.$light-primary-text, 'red')},
#{color.channel(v.$light-primary-text, 'green')}, #{color.channel(variables.$light-primary-text, 'green')},
#{color.channel(v.$light-primary-text, 'blue')}, #{color.channel(variables.$light-primary-text, 'blue')},
#{color.channel(v.$light-primary-text, 'alpha')}; #{color.channel(variables.$light-primary-text, 'alpha')};
--light-secondary-text: 255, 255, 255, 0.7; --light-secondary-text: 255, 255, 255, 0.7;
--light-accent-text: 255, 255, 255, 1; --light-accent-text: 255, 255, 255, 1;
--light-warn-text: 255, 255, 255, 1; --light-warn-text: 255, 255, 255, 1;
@ -245,7 +245,7 @@ body {
} }
.gf-table { .gf-table {
@include t.gf-table(true); @include table.gf-table(true);
} }
.mat-mdc-dialog-container { .mat-mdc-dialog-container {
@ -358,7 +358,7 @@ ngx-skeleton-loader {
} }
.gf-table { .gf-table {
@include t.gf-table; @include table.gf-table;
} }
.gf-text-wrap-balance { .gf-text-wrap-balance {

Loading…
Cancel
Save