Added overflow for #content
This commit is contained in:
parent
3d032ef2dd
commit
02d96f5ad7
|
@ -1,10 +1,6 @@
|
|||
body {
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
background-color: var(--bg);
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
border-color: var(--br);
|
||||
color: var(--fg);
|
||||
}
|
||||
|
@ -21,6 +17,7 @@ a {
|
|||
border-radius: 10px;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
padding-top: 25px;
|
||||
padding-bottom: 25px;
|
||||
background-color: var(--bg-header);
|
||||
|
@ -32,8 +29,12 @@ a {
|
|||
#content {
|
||||
min-width: 400px;
|
||||
max-width: 900px;
|
||||
max-height: 100%;
|
||||
overflow: auto;
|
||||
width: 65%;
|
||||
margin: 0;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
|
|
Loading…
Reference in New Issue