diff options
author | Jonas Olsson <jonas.124@gmail.com> | 2018-07-17 16:22:57 +0400 |
---|---|---|
committer | Jonas Olsson <jonas.124@gmail.com> | 2018-07-17 16:22:57 +0400 |
commit | b0f410f82ddc7e0dd02692c984610a4afe244cfb (patch) | |
tree | 0f29e00f1d7d97eab360fc3b712d4edaef32b0a8 | |
parent | c0ddecb2eeea3277dcab5a750eac991b7b0945ea (diff) | |
download | wekan-b0f410f82ddc7e0dd02692c984610a4afe244cfb.tar.gz wekan-b0f410f82ddc7e0dd02692c984610a4afe244cfb.tar.bz2 wekan-b0f410f82ddc7e0dd02692c984610a4afe244cfb.zip |
bug fix: #1780
Cards that are longer than the screen height can now scroll on the y-axis in order to be able to see the whole card.
-rw-r--r-- | client/components/cards/cardDetails.styl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/components/cards/cardDetails.styl b/client/components/cards/cardDetails.styl index 11660593..42d27d11 100644 --- a/client/components/cards/cardDetails.styl +++ b/client/components/cards/cardDetails.styl @@ -5,7 +5,8 @@ flex-shrink: 0 flex-basis: 470px will-change: flex-basis - overflow: hidden + overflow-y: scroll + overflow-x: hidden background: darken(white, 3%) border-radius: bottom 3px z-index: 20 !important |