Browse Source

fix: hide bullet on links and grid lists

NGPixel 5 years ago
parent
commit
cb5264e42b

+ 4 - 2
.vscode/settings.json

@@ -1,11 +1,13 @@
 {
   "eslint.enable": true,
-  "eslint.autoFixOnSave": true,
   "puglint.enable": true,
   "editor.formatOnSave": false,
   "editor.tabSize": 2,
   "eslint.validate": [
     "javascript",
     "vue"
-  ]
+  ],
+  "editor.codeActionsOnSave": {
+    "source.fixAll.eslint": true
+  }
 }

+ 1 - 1
client/components/common/nav-header.vue

@@ -461,7 +461,7 @@ export default {
   &-dev {
     background-color: mc('red', '600');
     position: absolute;
-    top: 10px;
+    top: 11px;
     left: 255px;
     padding: 5px 15px;
     border-radius: 5px;

+ 4 - 0
client/themes/default/scss/app.scss

@@ -325,6 +325,9 @@
     }
 
     &.links-list {
+      padding-left: 0;
+      list-style-type: none;
+
       li {
         background-color: mc('grey', '50');
         background-image: linear-gradient(to bottom, #FFF, mc('grey', '50'));
@@ -399,6 +402,7 @@
       border: 1px solid mc('grey', '200');
       padding: 1px;
       display: inline-block;
+      list-style-type: none;
 
       @at-root .theme--dark & {
         background-color: #000;