fix: hide bullet on links and grid lists
This commit is contained in:
parent
a257831c6c
commit
cb5264e42b
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
@ -1,11 +1,13 @@
|
|||||||
{
|
{
|
||||||
"eslint.enable": true,
|
"eslint.enable": true,
|
||||||
"eslint.autoFixOnSave": true,
|
|
||||||
"puglint.enable": true,
|
"puglint.enable": true,
|
||||||
"editor.formatOnSave": false,
|
"editor.formatOnSave": false,
|
||||||
"editor.tabSize": 2,
|
"editor.tabSize": 2,
|
||||||
"eslint.validate": [
|
"eslint.validate": [
|
||||||
"javascript",
|
"javascript",
|
||||||
"vue"
|
"vue"
|
||||||
]
|
],
|
||||||
|
"editor.codeActionsOnSave": {
|
||||||
|
"source.fixAll.eslint": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -461,7 +461,7 @@ export default {
|
|||||||
&-dev {
|
&-dev {
|
||||||
background-color: mc('red', '600');
|
background-color: mc('red', '600');
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 10px;
|
top: 11px;
|
||||||
left: 255px;
|
left: 255px;
|
||||||
padding: 5px 15px;
|
padding: 5px 15px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
@ -325,6 +325,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.links-list {
|
&.links-list {
|
||||||
|
padding-left: 0;
|
||||||
|
list-style-type: none;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
background-color: mc('grey', '50');
|
background-color: mc('grey', '50');
|
||||||
background-image: linear-gradient(to bottom, #FFF, mc('grey', '50'));
|
background-image: linear-gradient(to bottom, #FFF, mc('grey', '50'));
|
||||||
@ -399,6 +402,7 @@
|
|||||||
border: 1px solid mc('grey', '200');
|
border: 1px solid mc('grey', '200');
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
list-style-type: none;
|
||||||
|
|
||||||
@at-root .theme--dark & {
|
@at-root .theme--dark & {
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
|
Loading…
Reference in New Issue
Block a user