Merge branch 'master' into develop

This commit is contained in:
Pieter Vander Vennet 2022-01-15 02:47:08 +01:00
commit 2001aae10d
9 changed files with 75 additions and 26 deletions

View file

@ -964,6 +964,38 @@ video {
display: table;
}
.table-caption {
display: table-caption;
}
.table-cell {
display: table-cell;
}
.table-column {
display: table-column;
}
.table-column-group {
display: table-column-group;
}
.table-footer-group {
display: table-footer-group;
}
.table-header-group {
display: table-header-group;
}
.table-row-group {
display: table-row-group;
}
.table-row {
display: table-row;
}
.grid {
display: grid;
}
@ -972,6 +1004,10 @@ video {
display: contents;
}
.list-item {
display: list-item;
}
.hidden {
display: none;
}
@ -1248,6 +1284,10 @@ video {
overflow: hidden;
}
.overflow-scroll {
overflow: scroll;
}
.overflow-y-auto {
overflow-y: auto;
}
@ -1702,14 +1742,6 @@ video {
transition-duration: 150ms;
}
.\!transition {
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
transition-duration: 150ms !important;
}
.duration-500 {
transition-duration: 500ms;
}