fix: add stackoverflow flex classes (#88)

This commit is contained in:
httpjamesm 2024-03-09 11:20:10 -05:00 committed by GitHub
parent 0058aea03b
commit 01b960cd43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,3 +50,15 @@ html {
details { details {
cursor: pointer; cursor: pointer;
} }
.d-flex {
display: flex;
}
.fd-column {
flex-direction: column;
}
.fw-nowrap {
flex-wrap: nowrap;
}