blob: 897aa711b1f98c66b35524f3c070ce7876cc7d3a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Miscellaneous variables
// Border
$border-width: 1px !default;
$border-style: solid !default;
$border: $border-width $border-style var(--color-border-primary) !default;
// Border Radius
$border-radius-1: 4px !default;
$border-radius-2: 6px !default;
$border-radius-3: 8px !default;
$border-radius: $border-radius-2 !default;
// Tooltips
$tooltip-max-width: 250px !default;
$tooltip-delay: 0.4s !default;
$tooltip-duration: 0.1s !default;
|