Files
flights_web_raw/apps/react/src/styles/components/flights-map/no-directions-sheet.component.scss
T
gnezim f8120c154f styles: copy global and component SCSS files from Angular to React
- 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
2026-04-05 19:17:57 +03:00

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;
}