Skip to content

Commit

Permalink
feat: Left align all the contents of the footer (#134)
Browse files Browse the repository at this point in the history
This PR updates the footer such that all the footer contents are
uniformly aligned to the left.
![Screenshot 2024-02-20
184925](https://github.com/jenkins-infra/jenkins-io-components/assets/117621286/d6997422-6454-43b9-972a-a7f306f3a4a1)
  • Loading branch information
lakshmishreea122003 committed Mar 11, 2024
1 parent da7dd61 commit 9ff8881
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/jio-footer.css
Expand Up @@ -51,6 +51,10 @@ a {
vertical-align: top;
}

.col1 {
padding-left: 0;
}

li,
ul {
display: block;
Expand Down
2 changes: 1 addition & 1 deletion src/jio-footer.ts
Expand Up @@ -72,7 +72,7 @@ export class Footer extends LitElement {
<footer>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="col-md-4 col1">
<p class="box">
<jio-improve-this-page sourcePath=${this.sourcePath} githubRepo=${this.githubRepo} .githubBranch=${ifDefined(this.githubBranch)}></jio-improve-this-page>
<jio-report-a-problem sourcePath=${this.sourcePath} githubRepo=${this.githubRepo} .githubBranch=${ifDefined(this.githubBranch)} .template=${ifDefined(this.reportAProblemTemplate)}></jio-report-a-problem>
Expand Down

0 comments on commit 9ff8881

Please sign in to comment.