Browse Source

feat(client): migrate table import to @use

pull/6973/head
KenTandrian 3 months ago
parent
commit
64bc431fcb
  1. 6
      apps/client/src/styles.scss

6
apps/client/src/styles.scss

@ -1,7 +1,7 @@
@use '@angular/material' as mat; @use '@angular/material' as mat;
@import './styles/bootstrap'; @import './styles/bootstrap';
@import './styles/table'; @use './styles/table' as t;
@import './styles/variables'; @import './styles/variables';
@import 'svgmap/style.min'; @import 'svgmap/style.min';
@ -240,7 +240,7 @@ body {
} }
.gf-table { .gf-table {
@include gf-table(true); @include t.gf-table(true);
} }
.mat-mdc-dialog-container { .mat-mdc-dialog-container {
@ -353,7 +353,7 @@ ngx-skeleton-loader {
} }
.gf-table { .gf-table {
@include gf-table; @include t.gf-table;
} }
.gf-text-wrap-balance { .gf-text-wrap-balance {

Loading…
Cancel
Save