mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-21 16:05:44 +01:00
Tweaks to tool bars and icon sizes css
This commit is contained in:
parent
c244bc26d5
commit
dfa5280524
3 changed files with 5 additions and 3 deletions
|
|
@ -1,8 +1,9 @@
|
|||
.quickButtons {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-evenly;
|
||||
flex: 0 0;
|
||||
flex-direction: row;
|
||||
flex-wrap:nowrap;
|
||||
border-right: 1px solid #8e8e8e;
|
||||
padding-right: 3px;
|
||||
& > * {
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ function ActionButton({label, icon, icon96, icon32, cssIcons, symbol, size = 'la
|
|||
icon = <ImgIcon url={icon32} size={size === 'small' ? 16 : 24} />;
|
||||
}
|
||||
} else {
|
||||
icon = <ImgIcon url={icon96} size={48} />;
|
||||
icon = <ImgIcon url={icon96} size={30} />;
|
||||
}
|
||||
}
|
||||
if (!icon) {
|
||||
|
|
|
|||
|
|
@ -5,9 +5,10 @@ body {
|
|||
html, body {
|
||||
background: gray;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
width: 100% ;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
overflow-anchor: none;
|
||||
}
|
||||
|
||||
.sans-serif {
|
||||
|
|
|
|||
Loading…
Reference in a new issue