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

20 lines
195 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;
padding: 0;
margin: 0;
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-11-25 17:13:16 +07:00
@import "tailwindcss";