openreplay/frontend/app/components/Dashboard/Widgets/SessionsPerBrowser/Bar.css
2021-05-01 15:12:01 +05:30

20 lines
No EOL
361 B
CSS

.bar {
height: 10px;
width: 100%;
border-radius: 3px;
display: flex;
align-items: center;
& div {
padding: 0 5px;
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;
}
}