diff options
author | LarsVomMars | 2020-10-21 09:28:59 +0200 |
---|---|---|
committer | LarsVomMars | 2020-10-21 09:28:59 +0200 |
commit | 629c97555ff8686e091ad9d9ab0706ad242d941f (patch) | |
tree | 7a66995ae1fc19f4246eef3eba6bd0ba72eadf3e /quotes/public/style.css | |
parent | 36936cbc7e79e4eef2f2e49432eeb31e4198e5bd (diff) |
Super duper style fix
Diffstat (limited to 'quotes/public/style.css')
-rw-r--r-- | quotes/public/style.css | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/quotes/public/style.css b/quotes/public/style.css index f098bda..8e759da 100644 --- a/quotes/public/style.css +++ b/quotes/public/style.css @@ -41,15 +41,27 @@ button:not([type="submit"]) { } li { - word-wrap: break-word; + display: flex; + flex-flow: row wrap; + justify-content: space-between; + vertical-align: top; + margin: 10px 0; } -span { - float: right; +ul { + padding-left: 5px; +} + +span.text { + word-break: break-all; + width: 90%; +} + +span.delete-btn { cursor: pointer; background: url("/feather/icons/trash.svg") no-repeat center; - width: 30px; - height: 30px; + width: 10%; + height: auto; } input, |