feat: tweak collapsible toggle size

This commit is contained in:
alistair3149 2022-04-27 16:15:23 -04:00
parent 8eaaecf957
commit 9eeac80bf5
No known key found for this signature in database
GPG key ID: 94D081060FD3DD9C

View file

@ -1,5 +1,7 @@
@import '../variables.less'; @import '../variables.less';
@toggle-size: 16px;
.client-js { .client-js {
.section { .section {
&-heading { &-heading {
@ -31,12 +33,12 @@
} }
&-toggle { &-toggle {
width: 18px; width: @toggle-size;
height: 18px; height: @toggle-size;
margin-right: 10px; margin-right: @toggle-size;
background-position: center; background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 18px; background-size: @toggle-size;
cursor: pointer; cursor: pointer;
opacity: var( --opacity-icon-base ); opacity: var( --opacity-icon-base );
transition: @transition-opacity-quick, @transition-transform-quick; transition: @transition-opacity-quick, @transition-transform-quick;