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

51 lines
636 B
SCSS
Raw Normal View History

2023-12-10 19:59:36 +01:00
@import "fonts";
@import "colors";
html, html body, .form {
height: 100%;
}
2023-12-10 19:59:36 +01:00
body {
font-family: "Dhurjati Regular";
margin: 0;
padding: 0;
}
header, .body {
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
}
}
.body {
height: 100%;
font-size: larger;
2023-12-11 16:49:48 +01:00
ul.connections {
margin: 0;
padding: 0;
list-style-type: none;
}
.form {
.row {
display: flex;
width: 100%;
textarea, input {
width: 100%;
}
}
.row.content {
height: 55%;
}
}
}