Complete 3.4.1: Tablet Layouts - Implement tablet-specific UI with adaptive sizing and gesture support
This commit is contained in:
parent
ac7aade762
commit
c05c3a63cc
4 changed files with 93 additions and 8 deletions
|
|
@ -826,6 +826,21 @@
|
|||
gap: var(--spacing-5);
|
||||
}
|
||||
|
||||
/* Tablet-specific video header adjustments */
|
||||
@media (min-width: calc(var(--breakpoint-md))) and (max-width: calc(var(--breakpoint-lg) - 1px)) {
|
||||
.video-player__header:not(.video-responsive-preserve) {
|
||||
padding: var(--spacing-4) var(--spacing-6);
|
||||
}
|
||||
|
||||
.video-player__header-left:not(.video-responsive-preserve) {
|
||||
gap: var(--spacing-6);
|
||||
}
|
||||
|
||||
.stream-logo {
|
||||
font-size: var(--font-size-2xl);
|
||||
}
|
||||
}
|
||||
|
||||
.stream-logo {
|
||||
font-size: var(--font-size-xl);
|
||||
font-weight: var(--font-weight-bold);
|
||||
|
|
@ -982,6 +997,23 @@
|
|||
justify-content: space-between;
|
||||
}
|
||||
|
||||
/* Tablet-specific chat header adjustments */
|
||||
@media (min-width: calc(var(--breakpoint-md))) and (max-width: calc(var(--breakpoint-lg) - 1px)) {
|
||||
.chat__header:not(.chat-responsive-preserve) {
|
||||
padding: var(--spacing-5) var(--spacing-6);
|
||||
font-size: var(--font-size-lg);
|
||||
}
|
||||
|
||||
.chat__header-title {
|
||||
gap: var(--spacing-3);
|
||||
}
|
||||
|
||||
.chat__header-title::before {
|
||||
width: 1.5em;
|
||||
height: 1.5em;
|
||||
}
|
||||
}
|
||||
|
||||
.chat__header-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue