Browse Source

fix: hide bullet on links and grid lists

pull/1336/head
NGPixel 5 years ago
parent
commit
cb5264e42b
3 changed files with 9 additions and 3 deletions
  1. 6
      .vscode/settings.json
  2. 2
      client/components/common/nav-header.vue
  3. 4
      client/themes/default/scss/app.scss

6
.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
}
}

2
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
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;

Loading…
Cancel
Save