Skip to content

Commit a9e9c49

Browse files
committed
fix: long property infos not visible on mobile version 2
1 parent 5400cb1 commit a9e9c49

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

source/css/rainmeter.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -476,6 +476,9 @@ pre code {
476476
background-color: #4b607a;
477477
}
478478
.docs-content dt {
479+
display: flex;
480+
flex-direction: row;
481+
flex-wrap: wrap;
479482
font-size: .82rem;
480483
font-weight: 600;
481484
line-height: 1.5rem;
@@ -488,6 +491,26 @@ pre code {
488491
background-size: 150%;
489492
text-shadow: 0 2px 3px rgba(0, 0, 0, .1);
490493
}
494+
.docs-content dt > small {
495+
width: 100%;
496+
order: 3;
497+
}
498+
.docs-content dt > .heading-anchor {
499+
line-height: 0.5;
500+
order: 2;
501+
}
502+
503+
@media (min-width: 991px) {
504+
.docs-content dt {
505+
flex-direction: row;
506+
align-items: center;
507+
}
508+
.docs-content dt > small {
509+
margin-left: auto;
510+
width: auto;
511+
}
512+
}
513+
491514
.docs-content dt:target {
492515
background-color: #e09028;
493516
}

0 commit comments

Comments
 (0)