diff --git a/assets/main.css b/assets/main.css
index 86e6a4f..7613ceb 100644
--- a/assets/main.css
+++ b/assets/main.css
@@ -16,6 +16,19 @@ h2 {
color: var(--text);
}
+label {
+ font-size: 16px;
+}
+
+section.form label {
+ display: flex;
+ align-items: center;
+}
+
+.page section.form h3 {
+ margin: 10px 0 10px 30px;
+}
+
main .panel {
height: 100%;
width: 100%;
@@ -114,11 +127,14 @@ menu.sidebar svg {
.page {
padding: 0 2%;
width: 100%;
+ overflow-y: scroll;
+ scrollbar-width: none;
}
.page section {
margin-top: 50px;
margin: auto;
+ margin-bottom: 40px;
max-width: 700px;
}
@@ -147,8 +163,11 @@ section.loans-list {
display: flex;
flex-direction: column;
width: fit-content;
- margin: 0;
+ margin: 0 0 50px 0;
justify-content: center;
+ border-left: 1px solid var(--text-lightest);
+ padding: 10px;
+ margin-bottom: 50px;
}
.loans-list h3:not(.sel) {
@@ -160,13 +179,6 @@ section.loans-list {
width: fit-content;
}
-.loans-list {
- /* cursor: pointer; */
- border: 1px solid var(--text-lightest);
- padding: 10px;
- border-radius: 3px;
-}
-
.loans-list .add svg {
width: 35px;
height: 35px;
@@ -177,3 +189,21 @@ section.loans-list {
.loans-list .add svg:hover {
color: black;
}
+
+section.radios {
+ display: grid;
+ grid-template-columns: 50px 1fr;
+ row-gap: 20px;
+ /* border-bottom: 1px solid var(--text-lightest); */
+ /* padding-bottom: 50px; */
+ /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
+ /* border-radius: 3px; */
+}
+
+section.radios h3 {
+ grid-column: 1 / 3;
+}
+
+.form.radios input {
+ height: 20px;
+}
diff --git a/components/new.vue b/components/new.vue
index acfb234..204705b 100644
--- a/components/new.vue
+++ b/components/new.vue
@@ -6,8 +6,8 @@
+
+
+
+
+
+
+
diff --git a/main.css b/main.css
deleted file mode 100644
index e69de29..0000000