openreplay/frontend/app/components/Dashboard/Widgets/PredefinedWidgets/SessionsPerBrowser/Bar.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

20 lines
No EOL
371 B
CSS

.bar {
height: 5px;
width: 100%;
border-radius: 3px;
display: flex;
align-items: center;
& > div {
padding: 3px !important;
height: 20px;
color: #FFF;
}
& div:first-child {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
& div:last-child {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
}