You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
323 B
CSS

.notSelectable {
cursor: default;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-user-select: none;
}
.centerContent {
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
text-align: center;
}