mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
70 lines
No EOL
1.3 KiB
CSS
70 lines
No EOL
1.3 KiB
CSS
.flex {
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: flex
|
|
}
|
|
|
|
.inline-flex {
|
|
display: -webkit-inline-box;
|
|
display: -webkit-inline-flex;
|
|
display: inline-flex
|
|
}
|
|
|
|
.flex-direction-column {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-webkit-flex-direction: column;
|
|
flex-direction: column
|
|
}
|
|
|
|
.flex-direction-row {
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: normal;
|
|
-webkit-flex-direction: row;
|
|
flex-direction: row
|
|
}
|
|
|
|
.flex-grow {
|
|
-webkit-box-flex: 1;
|
|
-webkit-flex-grow: 1;
|
|
flex-grow: 1
|
|
}
|
|
|
|
.flex-shrink-zero {
|
|
-webkit-flex-shrink: 0;
|
|
flex-shrink: 0
|
|
}
|
|
|
|
.align-items-center {
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
align-items: center
|
|
}
|
|
|
|
.align-items-flex-start {
|
|
-webkit-box-align: start;
|
|
-webkit-align-items: flex-start;
|
|
align-items: flex-start
|
|
}
|
|
|
|
.justify-content-center {
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
justify-content: center
|
|
}
|
|
|
|
.justify-content-flex-end {
|
|
-webkit-box-pack: end;
|
|
-webkit-justify-content: flex-end;
|
|
justify-content: flex-end
|
|
}
|
|
|
|
.flex-wrap-wrap {
|
|
-webkit-flex-wrap: wrap;
|
|
flex-wrap: wrap
|
|
}
|
|
|
|
.align-self-flex-end {
|
|
-webkit-align-self: flex-end;
|
|
align-self: flex-end
|
|
} |