mirror of
https://github.com/twisterarmy/twister-react.git
synced 2025-01-11 23:47:55 +00:00
67 lines
702 B
CSS
67 lines
702 B
CSS
body {
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
body.modal-open {
|
|
overflow-y: scroll;
|
|
margin: 0;
|
|
}
|
|
|
|
.modal {
|
|
overflow: auto;
|
|
}
|
|
|
|
.link-button-gray {
|
|
color: #666;
|
|
}
|
|
|
|
.tight {
|
|
padding-right:0.4em;
|
|
padding-left:0.4em;
|
|
}
|
|
|
|
.fullytight {
|
|
padding-right:0;
|
|
padding-left:0;
|
|
}
|
|
|
|
.fullytight_all {
|
|
padding:0;
|
|
}
|
|
|
|
.nomargin {
|
|
margin-right:0;
|
|
margin-left:0;
|
|
}
|
|
|
|
.nomargin-top {
|
|
margin-top:0;
|
|
}
|
|
|
|
.text-align-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.img-responsive {
|
|
width: 100%;
|
|
}
|
|
|
|
.item-enter {
|
|
opacity: 0.01;
|
|
transition: opacity .5s ease-in;
|
|
}
|
|
|
|
.item-enter.item-enter-active {
|
|
opacity: 1;
|
|
}
|
|
|
|
.item-leave {
|
|
opacity: 1;
|
|
transition: opacity .5s ease-in;
|
|
}
|
|
|
|
.item-leave.item-leave-active {
|
|
opacity: 0.01;
|
|
}
|
|
|