17 lines
289 B
CSS
17 lines
289 B
CSS
.ExperimentPage {
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.experimentButtons {
|
|
display: flex;
|
|
gap: 20px;
|
|
flex-direction: row;
|
|
justify-content: right;
|
|
width: fit-content;
|
|
margin-left: auto;
|
|
flex-wrap: nowrap;
|
|
text-wrap: nowrap;
|
|
}
|