diff options
author | hellekin <hellekin@cepheide.org> | 2021-02-11 23:05:27 +0100 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2021-02-11 23:05:27 +0100 |
commit | cbbf21de5c26bc8435024ac3f0bd62e69c84341b (patch) | |
tree | cc7f000adf0802e59676b5db19011ff9f14736f9 /app/javascript/scss/_resources.scss | |
parent | e5619547d5544a043dfec173f17020b09f882a98 (diff) | |
download | incommon-map-cbbf21de5c26bc8435024ac3f0bd62e69c84341b.tar.gz |
[FEATURE] Link to editv0.1.8
Diffstat (limited to 'app/javascript/scss/_resources.scss')
-rw-r--r-- | app/javascript/scss/_resources.scss | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app/javascript/scss/_resources.scss b/app/javascript/scss/_resources.scss index eb7411b..e9b3d0b 100644 --- a/app/javascript/scss/_resources.scss +++ b/app/javascript/scss/_resources.scss @@ -7,3 +7,32 @@ // Place all the styles related to the Resources controller here. // They will automatically be included in application.css. // You can use Sass (SCSS) here: https://sass-lang.com/ + +article.resource { + nav { + margin-top: 1rem; + + ul { + display: flex; + border-top: 2px solid; + flex-flow: row-reverse nowrap; + justify-content: space-evenly; + list-style: none; + padding: 0; + + li { + padding: 0; + text-align: center; + flex: 1; + + &:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + + a { + } + } + } + } +} |