Files
fundor333.com/assets/sass/share-button.scss
Fundor333 b7c5abdcd5 Add share
2025-08-22 23:35:06 +02:00

44 lines
576 B
SCSS

$color_1: #fff;
$background-color_1: #0c9;
share-button {
position: fixed;
width: 60px;
height: 60px;
bottom: 40px;
left: 40px;
color: $color_1;
background-color: $background-color_1;
border-radius: 50px;
text-align: center;
button {
background-color: transparent;
border: none;
margin: 0;
padding: 0;
text-align: inherit;
font: inherit;
border-radius: 0;
appearance: none;
}
&:not(:defined) {
button {
display: none;
}
display: none;
}
&:defined {
a {
display: none;
}
display: none;
}
}
.my-float {
margin-top: 22px;
}