1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-21 16:54:30 -04:00
Files
Radarr/frontend/src/Components/Modal/ModalContent.css
2019-06-11 22:06:43 -04:00

24 lines
364 B
CSS

.modalContent {
position: relative;
display: flex;
flex-direction: column;
flex-grow: 1;
width: 100%;
background-color: $modalBackgroundColor;
}
.closeButton {
position: absolute;
top: 0;
right: 0;
z-index: 1;
width: 60px;
height: 60px;
text-align: center;
line-height: 60px;
&:hover {
color: $modalCloseButtonHoverColor;
}
}