mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-02 05:36:38 +00:00
22 lines
548 B
SCSS
22 lines
548 B
SCSS
@import 'node_modules/@shlinkio/shlink-frontend-kit/dist/base'; // Before bootstrap stylesheet. Includes SASS var overrides
|
|
@import 'node_modules/bootstrap/scss/bootstrap.scss';
|
|
@import 'node_modules/@shlinkio/shlink-frontend-kit/dist/index'; // After bootstrap. Includes CSS overwrites
|
|
@import '@shlinkio/shlink-web-component/index';
|
|
|
|
* {
|
|
outline: none !important;
|
|
}
|
|
|
|
:root {
|
|
scroll-behavior: auto;
|
|
color-scheme: var(--color-scheme);
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#root {
|
|
height: 100%;
|
|
background: var(--secondary-color);
|
|
color: var(--text-color);
|
|
}
|