diff --git a/frappe/public/build.json b/frappe/public/build.json index 049db65ee7..a679ed30d0 100755 --- a/frappe/public/build.json +++ b/frappe/public/build.json @@ -113,6 +113,7 @@ "public/less/social.less", "public/scss/website.scss", "public/scss/new_ui.scss", + "public/scss/global.scss", "node_modules/frappe-charts/dist/frappe-charts.min.css" ], "css/frappe-rtl.css": [ diff --git a/frappe/public/less/new_ui.less b/frappe/public/less/new_ui.less deleted file mode 100644 index b629652e2e..0000000000 --- a/frappe/public/less/new_ui.less +++ /dev/null @@ -1,44 +0,0 @@ -@import "variables.less"; - -body { - font-family: Inter; -} - -a { - color: @text-color; -} - -.btn { - border: none; - border-radius: @border-radius; -} - -.btn-secondary, .btn-default { - background-color: @control-bg; -} - -.btn-primary { - background: @brand-gradient; -} - -.form-control { - border: none; - background-color: @control-bg; - color: @text-light; - box-shadow: none; - border-radius: @border-radius; -} - -.navbar-default { - background: white; - border-bottom: 1px solid @border-color; -} - -h1, h2, h3 { - color: @text-color; - font-weight: bold; -} - -h1 { - font-size: 20px; -} \ No newline at end of file diff --git a/frappe/public/scss/global.scss b/frappe/public/scss/global.scss new file mode 100644 index 0000000000..b23d1c2bcc --- /dev/null +++ b/frappe/public/scss/global.scss @@ -0,0 +1,9 @@ +@import "variables"; + +body { + font-family: Inter; +} + +a { + color: $text-color; +} \ No newline at end of file diff --git a/frappe/public/scss/new_ui.scss b/frappe/public/scss/new_ui.scss new file mode 100644 index 0000000000..772c576fc6 --- /dev/null +++ b/frappe/public/scss/new_ui.scss @@ -0,0 +1,44 @@ +@import "variables"; + +body { + font-family: Inter; +} + +a { + color: $text-color; +} + +.btn { + border: none; + border-radius: $border-radius; +} + +.btn-secondary, .btn-default { + background-color: $control-bg; +} + +.btn-primary { + background: $brand-gradient; +} + +.form-control { + border: none; + background-color: $control-bg; + color: $text-light; + box-shadow: none; + border-radius: $border-radius; +} + +.navbar-default { + background: white; + border-bottom: 1px solid $border-color; +} + +h1, h2, h3 { + color: $text-color; + font-weight: bold; +} + +h1 { + font-size: 20px; +} \ No newline at end of file