mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
36 lines
484 B
CSS
36 lines
484 B
CSS
.setting-button {
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 10px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.settings {
|
|
border-radius: 8px;
|
|
position: absolute;
|
|
background-color: papayawhip;
|
|
color: cadetblue;
|
|
left: 10px;
|
|
top: 10px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.toggle {
|
|
width: 190px;
|
|
margin: 5px;
|
|
padding: 5px;
|
|
}
|
|
|
|
@media (min-width: 721px) {
|
|
.mobile-settings {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.settings {
|
|
display: none;
|
|
}
|
|
}
|
|
|