From b37611bffe1dbb6107a0efd210e125c9a141856d Mon Sep 17 00:00:00 2001 From: codecalm Date: Wed, 25 Mar 2020 21:58:08 +0100 Subject: bold, italic, underline icons #11 --- src/style.scss | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'src/style.scss') diff --git a/src/style.scss b/src/style.scss index fd23726..698a803 100644 --- a/src/style.scss +++ b/src/style.scss @@ -395,3 +395,34 @@ Components .td-1 { width: 1%; } + +$border-color: #e0e0e0; + +.toolbar { + display: flex; +} + +.buttons { + display: flex; + margin-right: .5rem; + border: 1px solid $border-color; + border-radius: 3px; + + .button + .button { + border-left: 1px solid $border-color; + } +} + +.button { + display: inline-flex; + width: 2rem; + height: 2rem; + align-items: center; + justify-content: center; + color: mix($dark, #fff, 75%); + + svg { + width: 1.25rem; + height: 1.25rem; + } +} -- cgit v1.2.1