Skip to content
Snippets Groups Projects
Commit 74b0cab1 authored by Mateusz Charytoniuk's avatar Mateusz Charytoniuk
Browse files

fix(docs,css): double border

parent 61fb5745
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
background-size: 24px 24px; background-size: 24px 24px;
border-color: #555555aa; border-color: #555555aa;
border-style: dashed; border-style: dashed;
border-width: 4px; border-width: 2px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin: 20px 0; margin: 20px 0;
......
...@@ -122,14 +122,16 @@ code[class] { ...@@ -122,14 +122,16 @@ code[class] {
font-size: var(--font-size-code-smaller); font-size: var(--font-size-code-smaller);
border-color: var(--color-border); border-color: var(--color-border);
border-style: solid; border-style: solid;
border-width: 0 0 1px 1px;
padding: 6px 10px; padding: 6px 10px;
pointer-events: none; pointer-events: none;
user-select: none; user-select: none;
z-index: 1; z-index: 1;
@media screen and (max-width: 1023px) {
border-width: 0 0 1px 0;
}
@media screen and (min-width: 1024px) { @media screen and (min-width: 1024px) {
border-top-right-radius: 4px; border-width: 0 0 1px 1px;
position: absolute; position: absolute;
top: 0; top: 0;
right: 0; right: 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment