web-apps/apps/common/mobile/resources/less/ios/_dataview.less
2016-11-15 15:32:11 +03:00

34 lines
432 B
Plaintext

// Data view
.dataview {
&.page-content {
background: @white;
}
.row {
justify-content: space-around;
}
ul {
padding: 0 10px;
list-style: none;
li {
display: inline-block;
}
}
.active {
position: relative;
&::after {
content: '';
width: 20px;
height: 20px;
background-color: red;
position: absolute;
right: 0;
bottom: 0;
}
}
}