Skip to content

Commit 956133b

Browse files
committed
refactor: improve styles
1 parent 30d931d commit 956133b

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

src/components/AppHeader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const AppHeader = () => {
4343
}, [])
4444

4545
return (
46-
<CHeader position="sticky" className="mb-4" ref={headerRef}>
46+
<CHeader position="sticky" className="mb-4 p-0" ref={headerRef}>
4747
<CContainer className="border-bottom" fluid>
4848
<CHeaderToggler
4949
className="ps-1"
File renamed without changes.

src/scss/_variables.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
// Variable overrides
22
//
33
// If you want to customize your project please add your variables below.
4+
5+
$enable-rtl: true; /* stylelint-disable-line scss/dollar-variable-default */
6+
$enable-deprecation-messages: false; /* stylelint-disable-line scss/dollar-variable-default */

src/scss/style.scss

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
// If you want to override variables do it here
22
@import "variables";
33

4-
$enable-ltr: true;
5-
$enable-rtl: true;
6-
74
// Import CoreUI for React components library
85
@import "@coreui/coreui/scss/coreui";
96

107
// Import Chart.js custom tooltips styles
118
@import "@coreui/chartjs/scss/coreui-chartjs";
129

1310
@import "layout";
14-
@import "example";
11+
12+
// Preview
13+
@import "examples";
1514

1615
// If you want to add custom CSS you can put it here.
1716
@import "custom";

0 commit comments

Comments
 (0)