Skip to content

Commit

Permalink
Fix spacing issue between footer and main content
Browse files Browse the repository at this point in the history
  • Loading branch information
spokenbird committed Dec 14, 2023
1 parent fea5be1 commit 11bc1c9
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions src/main/resources/static/assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ body,
background-color: var(--light);
}

body {
margin-bottom: 0;
}

.subflow-list__item-actions {
margin-left: 3rem;
font-size: 16px;
Expand Down Expand Up @@ -350,16 +354,6 @@ input[type="number"] {
background-color: var(--primary);
}

.main-footer-la {
position: absolute;
left: 0%;
right: 0%;
top: 0%;
bottom: 0%;

background: #00284D;
}

.center {
display: block;
margin-left: auto !important;
Expand Down Expand Up @@ -441,7 +435,7 @@ p.grey-text {
}

.page-wrapper {
padding-bottom: 140px;
padding-bottom: 0;
}

.clipboard-icon {
Expand All @@ -459,4 +453,11 @@ p.grey-text {

button.button.button--secondary{
margin-left: 0;
}
}

.main-footer {
position: static;
}



0 comments on commit 11bc1c9

Please sign in to comment.