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.
44 lines
504 B
CSS
44 lines
504 B
CSS
@import '~antd/dist/antd.css';
|
|
|
|
.align_right{
|
|
text-align: right;
|
|
}
|
|
|
|
.align_left{
|
|
text-align: left;
|
|
}
|
|
.align_center{
|
|
text-align: center;
|
|
}
|
|
.m-1{
|
|
margin: 1em;
|
|
}
|
|
.mt-1{
|
|
margin-top: 1em;
|
|
}
|
|
.mb-1{
|
|
margin-bottom: 1em;
|
|
}
|
|
.ml-1{
|
|
margin-left: 1em;
|
|
}
|
|
.mr-1{
|
|
margin-right: 1em;
|
|
}
|
|
.mb-n1{
|
|
margin-bottom: -1em;
|
|
}
|
|
.p-none{
|
|
padding: 0;
|
|
}
|
|
.p-s1{
|
|
padding: .5rem!important;
|
|
}
|
|
|
|
.sticky-top{
|
|
margin: -16px -8px .5em -8px;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|