dolphins7.skeleton/twenty-frontend/src/css/main.scss

47 lines
594 B
SCSS
Raw Normal View History

2023-12-10 19:59:36 +01:00
@import "fonts";
@import "colors";
2023-12-20 21:58:04 +01:00
@import "pure";
2023-12-10 19:59:36 +01:00
html, html body, .form {
height: 100%;
}
2023-12-10 19:59:36 +01:00
body {
margin: 0;
padding: 0;
}
2023-12-20 22:47:26 +01:00
header, #reactapp {
2023-12-10 19:59:36 +01:00
margin: 0 auto;
color: $black;
2023-12-10 19:59:36 +01:00
width: 75%;
max-width: 1024px;
}
header {
2023-12-10 19:59:36 +01:00
h1 {
margin: 0;
padding: 0;
line-height: 1;
font-weight: normal;
2023-12-10 19:59:36 +01:00
}
2023-12-20 22:47:26 +01:00
min-height: 64px;
2023-12-10 19:59:36 +01:00
}
2023-12-20 22:47:26 +01:00
form.new-issue {
.pure-u-1-1 {
display: flex;
margin: 0 0 15px 0;
.left {
width: 20%;
select { width: 100%; }
margin: 0 1% 0 0;
}
2023-12-20 22:47:26 +01:00
.right {
width: 75%;
input, textarea { width: 100%; }
}
}
}