4,554
edits
No edit summary |
No edit summary |
||
Line 107: | Line 107: | ||
#show-article-wrapper { | #show-article-wrapper { | ||
display: none; | display: none; | ||
position: | position: fixed; /* Change to fixed */ | ||
top: 0; | |||
right: 0; | |||
width: 40%; | width: 40%; | ||
height: | height: 100vh; /* Set to full viewport height */ | ||
overflow-y: auto; /* Enable vertical scrolling when content overflows */ | |||
z-index: 2; /* Ensure it's above #list */ | |||
} | } | ||
#show-article { | #show-article { | ||
background-color: white; | background-color: white; | ||
border: 1px solid; | border: 1px solid; | ||
padding: 10px; | padding: 10px; | ||
} | |||
#article-frame { | |||
/* You can style #article-frame as needed */ | |||
} | } | ||