ds4/scss/utils/_variables.scss

19 lines
343 B
SCSS
Raw Normal View History

2021-06-26 22:02:00 +02:00
/*
* SPDX-FileCopyrightText: 2021 Johannes Loher
*
* SPDX-License-Identifier: MIT
*/
2021-02-24 12:55:30 +01:00
@use "./colors";
2020-10-29 16:18:38 +01:00
$padding-sm: 5px;
$padding-md: 10px;
2020-12-23 17:09:02 +01:00
$padding-lg: 20px;
2020-12-31 00:32:17 +01:00
$margin-sm: $padding-sm;
$margin-md: $padding-md;
$margin-lg: $padding-lg;
$official-icons-path: "../assets/icons/official";
2021-02-24 12:55:30 +01:00
$border-groove: 2px groove colors.$c-border-groove;