1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-22 20:01:36 +03:00

Restyle-codeblocks (#406)

* Code blocks font weight set to normal
This commit is contained in:
avele 2019-10-29 17:14:11 +04:00 committed by GitHub
parent e35579e8e7
commit d20e5f99b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,7 +150,6 @@ code {
border-radius: 3px; border-radius: 3px;
background-color: #fafafa; background-color: #fafafa;
box-shadow: none; box-shadow: none;
font-weight: normal;
} }
} }
/* Vuetify css adds unwanted space to start and end of code and kbd tag */ /* Vuetify css adds unwanted space to start and end of code and kbd tag */
@ -164,7 +163,6 @@ code {
pre code { pre code {
background-color: rgba(10, 10, 10, 0.04); background-color: rgba(10, 10, 10, 0.04);
color: #bd4147; color: #bd4147;
font-weight: 900;
border-radius: 5px; border-radius: 5px;
border-width: 1px; border-width: 1px;
border-style: solid; border-style: solid;
@ -264,4 +262,7 @@ blockquote {
.app-content >>> > .v-content__wrap > .container { .app-content >>> > .v-content__wrap > .container {
padding: 12px; padding: 12px;
} }
.app-content >>> code, kbd {
font-weight: normal;
}
</style> </style>