openreplay/frontend/app/components/Dashboard/Widgets/common/widgetHOC.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

44 lines
No EOL
564 B
CSS

@import 'mixins.css';
.circle {
width: 8px;
height: 8px;
border-radius: 50%;
margin-right: 5px;
}
.panel {
border-radius: 5px;
border: solid thin #EEEEEE;
background: $white;
padding: 15px;
&:hover {
& .closeButton {
opacity: 1;
transition: all 0.2s;
}
}
&.fullwidth {
width: 100%;
}
&.minHeight {
height: 300px;
}
&.fitContent {
height: fit-content;
}
& .closeButton {
opacity: 0;
}
& .trendChart {
margin-left: -15px;
margin-right: -15px;
margin-bottom: -15px;
}
}