I have a layout, that looks as following:
I am trying to place the div circle on buttom and right as following:
$menu-btn: 65px;
.portfolio-container {
width: 100%;
height: 100%;
.show-menu-btn {
display: flex;
justify-content: center;
align-items: center;
height: $menu-btn;
width: $menu-btn;
border-radius: 50%;
background-color: #24344b;
position: sticky;
bottom: 10;
right: 10;
.fa-align-justify {
color: white;
}
}
}
But as you can see, it does not work. What am I doing wrong?
The html code is:
<div class="portfolio-container">
<div class="show-menu-btn">
<i class="fas fa-align-justify fa-2x" />
</div>
</div>