Skip to content

Commit 0b1b621

Browse files
committed
Fix resize responsiveness
1 parent 503bfe5 commit 0b1b621

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

app/assets/stylesheets/application.css

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ body.root {
3737
font-size: 1rem;
3838
font-weight: normal;
3939
opacity: 0.6;
40+
text-wrap: nowrap;
4041
}
4142
a {
4243
text-decoration: none;
@@ -82,7 +83,7 @@ body.root {
8283
}
8384
}
8485

85-
@media (max-width: 810px) {
86+
@media (max-width: 830px) {
8687
.header {
8788
flex-direction: column;
8889

@@ -123,6 +124,15 @@ body.root {
123124
background: #eef;
124125
}
125126

127+
.library {
128+
flex-grow: 1;
129+
text-wrap: nowrap;
130+
white-space: nowrap;
131+
overflow: hidden;
132+
margin-right: 4px;
133+
text-overflow: ellipsis;
134+
}
135+
126136
a:hover {
127137
background: transparent;
128138
color: #3ae;
@@ -257,6 +267,7 @@ body.root {
257267
.tabbed-links {
258268
display: flex;
259269
flex-direction: row;
270+
flex-wrap: wrap;
260271
align-items: center;
261272
gap: 0.5rem;
262273
font-size: larger;

0 commit comments

Comments
 (0)