naive-ui/styles/themes/commonVars.scss

41 lines
841 B
SCSS
Raw Normal View History

$--n-font-family: 'FiraSans';
2019-10-10 18:24:51 +08:00
2020-02-07 20:04:20 +08:00
$--n-ease-in-out-cubic-bezier: cubic-bezier(.4, 0, .2, 1);
2019-12-21 21:31:48 +08:00
$--n-mono-font-family: 'FiraCode', monospace;
2019-09-25 14:24:53 +08:00
$--n-height: (
"small": 28px,
"medium": 34px,
"large": 40px,
"huge": 48px
2019-09-25 14:24:53 +08:00
);
$--n-font-size: (
2019-12-09 15:12:53 +08:00
"tiny": 13px,
2019-09-25 14:24:53 +08:00
"small": 14px,
"medium": 14px,
"large": 15px,
"huge": 16px
2019-09-27 16:02:20 +08:00
);
2019-10-10 18:24:51 +08:00
$--base-picker-border-radius: 6px;
2019-09-27 22:27:01 +08:00
$--base-select-menu-box-shadow: none;
2019-10-22 16:35:44 +08:00
$--input-number-border-radius: 6px;
2019-10-10 18:24:51 +08:00
$--input-icon-size: 20px;
$--input-border-radius: 6px;
$--popover-box-shadow: (0 2px 12px 0 rgba(0, 0, 0, 0.18));
2019-12-09 15:12:53 +08:00
$--popover-arrow-width: 6px;
2019-10-22 18:34:49 +08:00
$--table-fixed-column-box-shadow: (0 0 12px 0 rgba(0, 0, 0, .18));
2019-10-22 18:34:49 +08:00
$--slider-rail-height: 4px;
$--slider-dot-size: 8px;
$--slider-handle-size: 14px;
2020-02-07 20:04:20 +08:00
$--icon-transition: (fill .3s $--n-ease-in-out-cubic-bezier, stroke .3s $--n-ease-in-out-cubic-bezier);