1
0
Fork 0
tsgames/src/games/ai/components/header/header.module.css

29 lines
473 B
CSS

.header {
display: flex;
flex-direction: row;
justify-content: space-between;
height: 36px;
width: 100%;
border: var(--border);
>input {
&.valid {
background-color: var(--green);
}
&.invalid {
background-color: var(--red);
}
}
.buttons {
display: flex;
flex-direction: row;
gap: 8px;
padding: 0 8px;
}
}
.modalTitle {
margin-top: 0;
}