浏览代码

feat: Add grid breakpoint css_variables

So that other apps does not have to be dependant on 'variables' file to get grid sizes
version-14
Suraj Shetty 4 年前
父节点
当前提交
ad8b844942
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. +8
    -0
      frappe/public/scss/desk/css_variables.scss

+ 8
- 0
frappe/public/scss/desk/css_variables.scss 查看文件

@@ -13,6 +13,14 @@ $input-height: 28px !default;
--text-2xl: 20px;
--text-3xl: 22px;

// breakpoints
--xxl-width: map-get($grid-breakpoints, '2xl');
--xl-width: map-get($grid-breakpoints, 'xl');
--lg-width: map-get($grid-breakpoints, 'lg');
--md-width: map-get($grid-breakpoints, 'md');
--sm-width: map-get($grid-breakpoints, 'sm');
--xs-width: map-get($grid-breakpoints, 'xs');

--text-bold: 500;

--navbar-height: 60px;


正在加载...
取消
保存