summaryrefslogtreecommitdiff
path: root/src/assets/styles/_variables.scss
diff options
context:
space:
mode:
authorDerick Montague <derick.montague@ibm.com>2020-02-28 20:22:31 +0300
committerDerick Montague <derick.montague@ibm.com>2020-03-04 10:29:21 +0300
commit66f903fb69e8d8b9d7564e82a3daa3697cb92c54 (patch)
tree6d3eda972684650a91bc87af9ca6e48565a760bf /src/assets/styles/_variables.scss
parente0b76c335780c322aacae1b4f1ecef7b6f5e78ac (diff)
downloadwebui-vue-66f903fb69e8d8b9d7564e82a3daa3697cb92c54.tar.xz
Update application navigation colors
- Current navigation color did not match mockup - Replace color variables with theme variables in .vue file - Add $gray-500 - Delete the map-remove functions. Maps are based on the added properties - Increase navigaton icon size - Add _variables.scss file for overrides to Bootstrap Sass variables and adding custom variables Testing: 1. Navigation item for current page will have a dark background, light text, and a blue border. 2. Hovering over an active navigation item will display the cursor as the default arrow. Signed-off-by: Derick Montague <derick.montague@ibm.com> Change-Id: Id391364ee74ece59ba7b20d49fda859de0c12b17
Diffstat (limited to 'src/assets/styles/_variables.scss')
-rw-r--r--src/assets/styles/_variables.scss12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/assets/styles/_variables.scss b/src/assets/styles/_variables.scss
new file mode 100644
index 00000000..f59cfc1c
--- /dev/null
+++ b/src/assets/styles/_variables.scss
@@ -0,0 +1,12 @@
+@import "./colors";
+
+// Override Bootstrap Variables - node_modules/Bootstrap/scss/_variables.scss
+$enable-rounded: false;
+$enable-validation-icons: false;
+
+// OpenBMC Custom Variables
+$responsive-layout-bp: lg;
+$header-height: 56px;
+$navigation-width: 300px;
+$container-bgd: $gray-200;
+$primary-nav-hover: $gray-300; \ No newline at end of file