Skip to content

Commit 3e5dc1f

Browse files
Fix PR title width on small & medium screens (#9181)
1 parent ac9dacf commit 3e5dc1f

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

source/features/github-bugs.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,22 @@ div[class^='prc-PageHeader-Description']
161161
height: 32px;
162162
}
163163

164+
/* Fix PR title width on small & medium screens */
165+
/* Info: https://github.com/refined-github/refined-github/issues/9180 */
166+
/* Test: https://github.com/refined-github/refined-github/pull/9179/changes */
167+
react-app[app-name='pull-requests'] {
168+
@media (max-width: 1011px) {
169+
div[class^='prc-PageHeader-TitleArea'] {
170+
grid-area: 2 / 1 / auto / -1;
171+
}
172+
}
173+
@container (width <= 1011px) {
174+
div[class^='prc-PageHeader-TitleArea'] {
175+
grid-area: 2 / 1 / auto / -1;
176+
}
177+
}
178+
}
179+
164180
/*
165181
166182
Test URLs:

0 commit comments

Comments
 (0)