mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
27 lines
756 B
SCSS
27 lines
756 B
SCSS
@import "colors";
|
|
|
|
$border-radius-default: 4px;
|
|
$border-radius-modal: 6px;
|
|
$border-radius-tag: 2px;
|
|
$border-radius-circle: 100px;
|
|
|
|
$border-default: 1px solid $color-alto;
|
|
$border-secondary: 1px solid $color-silver-chalice;
|
|
$border-tertiary: 1px solid $color-concrete;
|
|
|
|
$border-primary: 1px solid $brand-primary;
|
|
$border-focus: 1px solid $brand-focus;
|
|
$border-success: 1px solid $brand-success;
|
|
$border-danger: 1px solid $brand-danger;
|
|
$border-transparent: 1px solid transparent;
|
|
|
|
.sci-divider {
|
|
background-image: linear-gradient(to right, var(--sn-sleepy-grey) 20%, rgba(255, 255, 255, 0) 0%);
|
|
background-position: top;
|
|
background-size: 5px 1px;
|
|
background-repeat: repeat-x;
|
|
display: inline-block;
|
|
flex-grow: 1;
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|