You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dashboard/src/App.css

44 lines
504 B
CSS

3 years ago
@import '~antd/dist/antd.css';
.align_right{
text-align: right;
}
.align_left{
text-align: left;
2 years ago
}
.align_center{
text-align: center;
}
.m-1{
margin: 1em;
}
.mt-1{
margin-top: 1em;
}
2 years ago
.mb-1{
margin-bottom: 1em;
}
.ml-1{
margin-left: 1em;
}
.mr-1{
margin-right: 1em;
}
2 years ago
.mb-n1{
margin-bottom: -1em;
}
.p-none{
padding: 0;
}
.p-s1{
padding: .5rem!important;
2 years ago
}
.sticky-top{
margin: -16px -8px .5em -8px;
position: sticky;
top: 0;
z-index: 100;
}