scss: add a bottom border to post-infos content
- Adds a bottom border to post-infos content to improve readability. - Improves the boder rules to comply with the proposed order of the border specification (width, style, color). Co-Authored-by: iGor milhit <igor@milhit.ch>main
parent
93934b2502
commit
b33d73f63a
|
@ -60,7 +60,7 @@
|
|||
}
|
||||
|
||||
ul {
|
||||
padding: 0;
|
||||
padding: 0 0 calc(var(--pico-spacing)/1) 0;
|
||||
|
||||
}
|
||||
|
||||
|
@ -79,6 +79,11 @@
|
|||
white-space: pre;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
details[open] > ul {
|
||||
border-bottom: var(--pico-border-width) solid var(--pico-muted-border-color);
|
||||
}
|
||||
|
||||
@media (min-width: 576px) {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
.audio,
|
||||
.stream {
|
||||
border: $purple-200 solid var(--pico-border-width);
|
||||
border: var(--pico-border-width) solid $purple-200 ;
|
||||
|
||||
audio {
|
||||
border-radius: var(--pico-border-radius);
|
||||
|
@ -60,7 +60,7 @@ figure {
|
|||
border-radius: var(--pico-border-radius);
|
||||
margin: var(--pico-spacing) auto;
|
||||
padding: .4em;
|
||||
border: $purple-200 solid var(--pico-border-width);
|
||||
border: var(--pico-border-width) solid $purple-200 ;
|
||||
width: 80%;
|
||||
|
||||
img {
|
||||
|
|
Loading…
Reference in New Issue