From 38e43435880bcd270eb3e9c4f158d0f6bad5bd49 Mon Sep 17 00:00:00 2001 From: U~man Date: Wed, 15 Jul 2020 20:24:11 +0200 Subject: [PATCH] ENH: Weapon tags --- src/scss/item.scss | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/src/scss/item.scss b/src/scss/item.scss index 6497260..a0889c5 100644 --- a/src/scss/item.scss +++ b/src/scss/item.scss @@ -1,5 +1,10 @@ .ose.sheet.item { .sheet-header { + h1 { + input { + margin: 6px 2%; + } + } .profile-img { border: none; flex: 0 0 84px; @@ -7,22 +12,24 @@ } .tag-list { margin: 0; - height: 20px; + height: 24px; overflow: auto; list-style: none; - padding: 0; + padding: 1px; display: flex; + flex-wrap: wrap; .tag { - background: $colorFaint; - border-radius: 10px; - color: $colorDark; - padding: 2px 5px; - box-shadow: 0 0 1px $colorDark; + background: $colorOlive; + border-radius: 5px; + color: whitesmoke; + padding: 1px 5px; + height: 18px; + box-shadow: 0 0 3px $colorFaint; margin: 0 2px; i { font-size: 8px; vertical-align: top; - color: $colorOlive; + color: $colorFaint; } } }