From c92ae8e623349d7ee8cb9e0f89113c2d2aeddd6a Mon Sep 17 00:00:00 2001 From: Tibet Sprague Date: Thu, 23 Apr 2020 13:51:39 -0700 Subject: [PATCH] Fix display of history row names at large screen sizes so it doesnt overlap Test here: https://alchemy-staging-rinkeby.herokuapp.com/dao/0xbe95cd709c30cf0ef0b34baab376453ef4a1a797/history/ Fixes: https://github.com/daostack/alchemy/issues/1551 --- src/components/Account/Account.scss | 6 ------ src/components/Proposal/ProposalHistoryRow.scss | 8 +++++++- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/Account/Account.scss b/src/components/Account/Account.scss index b50d71fa0..18788435d 100644 --- a/src/components/Account/Account.scss +++ b/src/components/Account/Account.scss @@ -357,12 +357,6 @@ input { margin-top: 30px; } -@media only screen and (max-width: 1430px) { - a.historyView { - width: 60%; - } -} - @media only screen and (max-width: 1280px) { a.historyView { width: 55px; diff --git a/src/components/Proposal/ProposalHistoryRow.scss b/src/components/Proposal/ProposalHistoryRow.scss index df939efca..9cbb34e0b 100644 --- a/src/components/Proposal/ProposalHistoryRow.scss +++ b/src/components/Proposal/ProposalHistoryRow.scss @@ -12,11 +12,17 @@ .proposalCreator { width: auto; - min-width: 105px; + min-width: 145px; padding-left: 7px; cursor: default; } +@media only screen and (max-width: 1280px) { + .proposalCreator { + min-width: 105px; + } +} + .endDate { color: $gray-1; }