28 lines
355 B
SCSS
28 lines
355 B
SCSS
.csg-icon {
|
|
position: fixed;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
z-index: 9999;
|
|
width: auto;
|
|
height: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0;
|
|
|
|
@media (max-width: 768px) {
|
|
max-width: 60px;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
img {
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
}
|
|
|