mue/src/components/modals/main/scss/marketplace/_buttons.scss

60 lines
966 B
SCSS
Raw Normal View History

2021-04-19 13:58:37 +00:00
%storebutton {
cursor: pointer;
font-size: 18px;
display: block;
padding: 5px 30px;
background: none;
border-radius: 24px;
transition: ease 0.33s;
border: 2px solid black;
&:hover {
background: #2d3436;
2021-04-19 13:58:37 +00:00
color: map-get($theme-colours, 'main');
}
}
.dark %storebutton {
border: 2px solid map-get($theme-colours, 'main');
color: map-get($theme-colours, 'main');
&:hover {
background: map-get($theme-colours, 'main');
color: #2d3436;
2021-04-19 13:58:37 +00:00
}
}
.removeFromMue {
@extend %storebutton;
border: 2px solid #ff4757;
color: #ff4757;
margin-top: 5px;
&:hover {
background: #ff4757;
color: map-get($theme-colours, 'main');
2021-04-19 13:58:37 +00:00
}
}
.addToMue {
@extend %storebutton;
margin-top: 12px;
}
.sideload {
display: inline;
margin-top: 0px;
}
button.round {
margin-left: 5px;
width: 30px;
height: 30px;
border-radius: 50%;
text-align: center;
line-height: 3px;
vertical-align: middle;
padding: 10px;
}