Skip to content

Commit 192d2d4

Browse files
authored
Merge pull request #1630 from daostack/fix-history-names-at-large-screens-sizes
Fix display of history row names at large screen sizes so it doesnt o…
2 parents 3542e45 + c92ae8e commit 192d2d4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/components/Account/Account.scss

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -357,12 +357,6 @@ input {
357357
margin-top: 30px;
358358
}
359359

360-
@media only screen and (max-width: 1430px) {
361-
a.historyView {
362-
width: 60%;
363-
}
364-
}
365-
366360
@media only screen and (max-width: 1280px) {
367361
a.historyView {
368362
width: 55px;

src/components/Proposal/ProposalHistoryRow.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,17 @@
1212

1313
.proposalCreator {
1414
width: auto;
15-
min-width: 105px;
15+
min-width: 145px;
1616
padding-left: 7px;
1717
cursor: default;
1818
}
1919

20+
@media only screen and (max-width: 1280px) {
21+
.proposalCreator {
22+
min-width: 105px;
23+
}
24+
}
25+
2026
.endDate {
2127
color: $gray-1;
2228
}

0 commit comments

Comments
 (0)