Skip to content

Commit

Permalink
Merge pull request #2014 from ORCID/fix/batch-of-fixes-12-jul-23
Browse files Browse the repository at this point in the history
Fix/batch of fixes 12 jul 23
  • Loading branch information
leomendoza123 authored Jul 12, 2023
2 parents c013197 + 5f8db15 commit b0427ae
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ mat-form-field {
}

.actions-wrapper {
width: 50%;
width: 51%;
}

.actions-wrapper,
Expand Down Expand Up @@ -107,7 +107,7 @@ mat-form-field {
}

.email-input-container {
max-width: 50%;
max-width: 49%;
padding-inline-end: 24px;
}

Expand Down
21 changes: 21 additions & 0 deletions src/app/layout/footer/footer.component.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
footer {
padding-bottom: 16px;
}

.columns-8,
.columns-4 {
:host {
footer {
padding-bottom: 75px;
}
}
}

.url-lists {
margin: 0;
padding: 0;
Expand All @@ -11,20 +21,25 @@ footer {
height: 35px;
padding-top: 24px;
padding-bottom: 16px;

> .col {
width: 275px;
}

a {
margin-left: 12px;

[dir] :host & {
margin-left: auto;
margin-right: 12px;
}

img {
height: 41px;
width: auto;
object-fit: cover;
}

img.social {
height: 24px;
}
Expand All @@ -37,6 +52,7 @@ footer {
width: 80px;
height: 15px;
margin-right: 8px;

[dir] :host & {
margin-right: auto;
margin-left: 8px;
Expand All @@ -45,6 +61,7 @@ footer {

.CC0 {
text-align: center;

.columns-4 :host &,
.columns-8 :host & {
padding-bottom: 15px;
Expand All @@ -55,11 +72,13 @@ footer {
.links {
> .url-lists {
justify-content: space-around;

a {
.columns-4 :host &,
.columns-8 :host & {
justify-content: space-around;
}

button {
padding: 0 12px;
}
Expand All @@ -71,6 +90,7 @@ a:hover,
a:focus {
text-decoration: underline;
}

.links {
a {
cursor: pointer;
Expand All @@ -95,6 +115,7 @@ a:focus {
font-size: inherit !important;
font-weight: inherit !important;
}

.ot-sdk-show-settings:hover {
color: inherit !important;
background-color: inherit !important;
Expand Down
9 changes: 8 additions & 1 deletion src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,26 @@ html,
body {
height: 100%;
}

body {
margin: 0;
font-family: 'Noto Sans', sans-serif;
font-display: swap;
}

app-root {
min-height: 100%;
position: relative;
display: flex;
flex-direction: column;
}

.router-container {
padding-bottom: 240px; //remove footer height

.columns-8 &,
.columns-4 & {
padding-bottom: 410px;
padding-bottom: 500px;
}
}

Expand Down Expand Up @@ -89,12 +93,15 @@ input[type='reset'] {
font: inherit;
cursor: pointer;
}

html {
overflow-y: scroll;
}

.pointer {
cursor: pointer;
}

.sr-only {
position: absolute;
width: 1px;
Expand Down

0 comments on commit b0427ae

Please sign in to comment.