38 lines
587 B
SCSS
38 lines
587 B
SCSS
|
/*
|
||
|
If any default style by the browser or
|
||
|
certain plugins (e.g. Bulma) needs to be overwritten,
|
||
|
this can be done in this file.
|
||
|
*/
|
||
|
|
||
|
/* Remove the negative margin from Bulma's columns. */
|
||
|
.columns {
|
||
|
margin: 0 !important;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
h1,h2,h3,h4,h5,h6 {
|
||
|
color: unset;
|
||
|
}
|
||
|
|
||
|
&:not(:last-child){
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.button {
|
||
|
border-color: unset;
|
||
|
border: unset;
|
||
|
border-radius: unset;
|
||
|
|
||
|
&:active,
|
||
|
&:hover
|
||
|
{
|
||
|
border-color: unset;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.icon {
|
||
|
width: unset;
|
||
|
height: unset;
|
||
|
}
|