21 lines
401 B
CSS
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;
|
|
} |