Chatwoot/app/javascript/dashboard/assets/scss/widgets/_buttons.scss

53 lines
728 B
SCSS
Raw Normal View History

.button {
margin-bottom: 0;
&.icon {
padding-left: $space-normal;
padding-right: $space-normal;
2019-10-27 13:58:02 +00:00
i {
padding-right: $space-small;
}
}
&.nice {
border-radius: $space-smaller;
}
&.hollow {
&.link {
border-color: transparent;
padding-left: 0;
&:hover,
&:focus {
border-color: transparent;
}
}
}
>.icon {
font-size: $font-size-default;
}
&.tiny {
font-size: $font-size-mini;
padding: $space-small $space-slab;
}
&.round {
border-radius: $space-larger;
}
&.compact {
padding-bottom: 0;
padding-top: 0;
}
2019-10-27 13:58:02 +00:00
}
.button--fixed-right-top {
position: fixed;
right: $space-small;
top: $space-small;
}