Files
no-copy-frontend/src/app/styles/globals.css
T

32 lines
284 B
CSS
Raw Normal View History

2025-11-24 18:24:36 +07:00
html,
body {
2025-11-24 18:52:32 +07:00
overflow-x: hidden;
2025-11-24 18:24:36 +07:00
}
body {
2025-11-25 17:13:16 +07:00
font-family: 'Segoe UI', sans-serif;
2025-11-24 18:24:36 +07:00
}
* {
2025-11-24 18:52:32 +07:00
box-sizing: border-box;
2025-11-24 18:24:36 +07:00
}
a {
2025-11-24 18:52:32 +07:00
text-decoration: none;
2025-11-24 18:24:36 +07:00
}
2025-12-05 16:19:13 +07:00
h1,
h2,
h3,
h4 {
font-weight: bold;
}
2025-12-18 13:36:56 +07:00
svg:focus,
g:focus,
path:focus {
outline: none;
outline-style: none;
}
2025-11-25 17:13:16 +07:00
@import "tailwindcss";