Files
seweb/client/components/help_popup/help_popup.css
2024-08-09 14:17:54 +02:00

21 lines
401 B
CSS

.help-popup{
width: 300px;
height: fit-content;
border: 2px solid black;
background-color: white;
border-radius: 10px;
z-index: 2;
position: absolute;
box-sizing: border-box;
}
.help-popup-description-container{
margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
}
.help-popup-description{
overflow-wrap: break-word;
}