Skip to content

Commit

Permalink
chore(website): remove deprecated Sass resources
Browse files Browse the repository at this point in the history
  • Loading branch information
wellwelwel committed Jan 23, 2025
1 parent 78b1662 commit 1da545c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
2 changes: 2 additions & 0 deletions website/src/css/_history.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use 'mixins' as *;

details {
&.history {
// Reset Docusaurus styles
Expand Down
11 changes: 6 additions & 5 deletions website/src/css/custom.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@import 'mixins';
@use 'sass:meta' as *;
@use 'mixins' as *;

:root {
--ifm-color-primary: #45aaf2;
Expand Down Expand Up @@ -93,7 +94,7 @@ pre[class*='language-'] {
}

// Components
@import './loading';
@import './history';
@import './stability/main';
@import './faq';
@include load-css('loading');
@include load-css('history');
@include load-css('stability/main');
@include load-css('faq');
7 changes: 5 additions & 2 deletions website/src/css/stability/_main.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
@use 'sass:meta' as *;
@use '../mixins' as *;

section {
&.stability {
@include flex(column);
Expand Down Expand Up @@ -55,5 +58,5 @@ section {
}

// Themes
@import 'light';
@import 'dark';
@include load-css('light');
@include load-css('dark');

0 comments on commit 1da545c

Please sign in to comment.