diff options
| author | Thomas Hackl <hackl@data-quest.de> | 2021-11-12 14:32:14 +0100 |
|---|---|---|
| committer | Thomas Hackl <hackl@data-quest.de> | 2021-11-12 14:32:14 +0100 |
| commit | 34fe83ffd61488033ad46e1871d816f336b76b24 (patch) | |
| tree | 6ec653c92fa6056fbc82221683ab16d2d4018b36 /resources | |
| parent | 11b6e79d8ddfa6a389a192b3c04bc7c5054d8a28 (diff) | |
background should fill tiles in widget and "my workspace" now, fixes #151
Diffstat (limited to 'resources')
| -rw-r--r-- | resources/assets/stylesheets/scss/contents.scss | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/resources/assets/stylesheets/scss/contents.scss b/resources/assets/stylesheets/scss/contents.scss index 92ca06b..5e8b8aa 100644 --- a/resources/assets/stylesheets/scss/contents.scss +++ b/resources/assets/stylesheets/scss/contents.scss @@ -1,5 +1,6 @@ .contents-widget { margin: 10px; + .content-items { grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); grid-gap: 5px; @@ -73,18 +74,21 @@ } } - &:hover { - background-color: $white; - color: unset; + } + + &:hover { + background-color: $white; + color: unset; + .content-item-link { .content-item-text { .content-item-title { color: $red; } } - } } + } } |
