openreplay/frontend/app/components/Client/Sites/sites.module.css
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

58 lines
No EOL
871 B
CSS

@import 'mixins.css';
.tabHeader {
display: flex;
align-items: center;
margin-bottom: 25px;
& .tabTitle {
margin: 0 15px 0 0;
font-weight: 400 !important;
}
}
.site {
padding: 15px 10px;
border-bottom: solid thin $gray-light-shade;
display: flex;
align-items: center;
&:hover {
& .actions button {
display: unset;
opacity: 1 !important;
}
}
& .actions {
margin-left: auto;
display: flex;
align-items: center;
justify-content: flex-end;
& > * {
margin-left: 15px;
}
& button {
&:disabled {
opacity: 0.3;
}
}
& button:not(:last-child) {
opacity: 0;
}
}
}
.label {
margin-left: 10px;
padding: 2px 10px;
border-radius: 3px;
background-color: $gray-lightest;
font-size: 12px;
border: solid thin $gray-light;
}