15 lines
639 B
SCSS
15 lines
639 B
SCSS
// -----------------------------------------------------------------------------
|
|
// TLIG stylesheet — entry point.
|
|
//
|
|
// Layer order is load-bearing: tokens first, then element defaults, then
|
|
// components. Nothing later in the file needs higher specificity than anything
|
|
// earlier, which is the whole reason there is not a single `!important` here.
|
|
//
|
|
// abstracts/ compile-time only, emits no CSS
|
|
// base/ custom properties, @font-face, reset, element typography, links
|
|
// components/ single-purpose blocks
|
|
// -----------------------------------------------------------------------------
|
|
|
|
@use 'base';
|
|
@use 'components';
|