react-admin-panel-orient/src/assets/styles/_general.scss

59 lines
741 B
SCSS
Raw Normal View History

2022-09-07 09:45:31 +00:00
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
2022-09-04 12:21:57 +00:00
* {
2022-09-07 09:45:31 +00:00
font-family: "Roboto", sans-serif;
2022-09-04 12:21:57 +00:00
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
.container {
width: 100%;
padding: 0 5rem;
2022-09-06 20:24:48 +00:00
max-width: 100%;
2022-09-04 12:21:57 +00:00
margin: 0 auto;
height: 100%;
}
html {
font-size: 62.5%;
height: 100%;
}
body {
background-color: #f1f4f8;
}
body,
#root,
.App {
height: 100%;
}
ul {
list-style-type: none;
}
input,
button {
background: none;
outline: none;
border: none;
}
2022-09-07 07:25:38 +00:00
button:disabled {
background: #d4d4d4 !important;
border: none !important;
cursor: not-allowed;
}
2022-09-04 12:21:57 +00:00
a {
color: #000;
text-decoration: none;
}
@mixin transition-std {
transition: 0.3s all ease;
}