e61ba95cf7
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
45 lines
645 B
SCSS
45 lines
645 B
SCSS
.button {
|
|
&.icon {
|
|
padding-left: $space-normal;
|
|
padding-right: $space-normal;
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
.button--fixed-right-top {
|
|
position: fixed;
|
|
right: $space-small;
|
|
top: $space-small;
|
|
}
|