10 lines
151 B
CSS
10 lines
151 B
CSS
/* fix modal overflow on low resolutions */
|
|
.modal {
|
|
position: absolute;
|
|
}
|
|
@media all and (min-width: 980px) {
|
|
body {
|
|
padding-top: 60px;
|
|
}
|
|
}
|