ov-components: refactor pre-join component styles for improved structure and loading state handling

master
Carlos Santos 2025-09-22 19:12:28 +02:00
parent bb70ddb3d9
commit 8416c3f764
1 changed files with 261 additions and 263 deletions

View File

@ -30,18 +30,6 @@
width: 100%;
}
}
}
@keyframes slideInFromRight {
from {
opacity: 0;
transform: translateX(20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
// Top Language Toolbar
.top-toolbar {
@ -98,7 +86,8 @@
display: flex;
flex-direction: column;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
animation: fadeIn 0.3s ease-out;
transform: translateZ(0);
// Video Preview Section
.video-preview-section {
@ -162,7 +151,7 @@
padding: 0;
&.mat-mdc-button-disabled {
background:var(--ov-disabled-background);
background: var(--ov-disabled-background);
color: var(--ov-text-disabled-color);
cursor: not-allowed;
@ -301,6 +290,19 @@
}
}
}
}
}
@keyframes slideInFromRight {
from {
opacity: 0;
transform: translateX(20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
// Responsive Design
@media (max-width: 640px) {
@ -400,8 +402,4 @@
transform: translateY(0);
}
}
.prejoin-main {
animation: fadeIn 0.3s ease-out;
transform: translateZ(0);
}
}