f8120c154f
- Copy 30+ global SCSS files to apps/react/src/styles/ - Copy 75+ component SCSS files to apps/react/src/styles/components/ - Organize by feature: online-board, schedule, flights-map, popular-requests, shared, toolkit - Organize pages styles: board, schedule, adaptive - Update main.tsx to import styles entry point
30 lines
654 B
SCSS
30 lines
654 B
SCSS
.no-directions-sheet {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: rgba(180, 180, 180, 0.302);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1000;
|
|
pointer-events: all;
|
|
padding: 16px; // чтобы не прилипало к краям на мобилках
|
|
}
|
|
|
|
.no-directions-card {
|
|
background: #fff;
|
|
padding: 16px 18px;
|
|
border-radius: 5px;
|
|
max-width: 520px;
|
|
width: min(520px, 100%);
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
|
|
border: 1px solid rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.no-directions-card p {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
color: rgba(0, 0, 0, 0.78);
|
|
text-align: center;
|
|
}
|