Skip to content
This repository has been archived by the owner on Jul 30, 2021. It is now read-only.

Commit

Permalink
fix: logo + styles
Browse files Browse the repository at this point in the history
  • Loading branch information
RitaOak committed Jun 7, 2020
1 parent 09f4d95 commit 3ff7e0a
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 23 deletions.
1 change: 1 addition & 0 deletions images/logo-01.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/homepage-navV2.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class homeNavV2 extends LitElement {
<nav class="navbar home-nav">
<div class="navbar-brand">
<a class="navbar-item logo" href="http://0.0.0.0:8080/oae">
<img src="/images/logo-oae9.svg" />
<img src="/images/logo-01.svg" />
</a>
</div>
<div class="navbar-end navEnd">
Expand Down
2 changes: 1 addition & 1 deletion src/components/library-tags-side.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class tagsSide extends LitElement {
<div class="level-left">
<div class="level-item">
<a class="add-menu-label">
Add New Label
New Label
</a>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/top-nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class topNav extends LitElement {
<div class="container top-nav">
<div class="navbar-brand">
<a class="navbar-item" href="http://0.0.0.0:8080/oae">
<img src="/images/logo-oae2.svg" width="112" height="28" />
<img src="/images/logo-01.svg" width="112" height="28" />
</a>
<div class="navbar-item">
<div class="field has-addons has-addons-centered">
Expand Down
16 changes: 8 additions & 8 deletions style/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ body {
}

.container.is-fluid {
margin: 0.5em 5.5em 0 5.5em;
margin: 0.5em 5.5em 0 5em;
padding: 0;
height: 100%;
}
Expand Down Expand Up @@ -171,22 +171,22 @@ body {
.menu-list li {
padding-left: 30px;
margin-bottom: 18px;
border-radius: 0 25px 25px 0;
border-radius: 25px;
height: 30px;
color: #212121;
display: flex;
align-items: center;
&:hover {
color: #0060df;
background-color: #f5f7ff;
background-color: #EDEDF0;
}
&:active {
color: #0060df;
background-color: #f5f7ff;
background-color: #EDEDF0;
}
&:focus {
color: #0060df;
background-color: #f5f7ff;
background-color: #EDEDF0;
}
}

Expand All @@ -209,8 +209,8 @@ a.network {

// Top Bar
.top-nav {
margin: 0.5em 5.5em 0.5em 5.5em;
max-width: 97%;
margin: 0.5em 4em 0.5em 4em;
max-width: 100%;
}

.topbar-search-icon {
Expand Down Expand Up @@ -284,7 +284,7 @@ ul.breadcrumb {

ul.breadcrumb li {
display: inline;
font-size: 1em;
font-size: 0.9em;
color: #424242;
font-weight: 500;
}
Expand Down
14 changes: 9 additions & 5 deletions style/groups-button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@
border-radius: 25px;
width: 150px;
height: 20px;
background-color: #2962ff;
color: white;
font-weight: bold;
background-color: transparent;
border: 2px solid #2962ff;
color: #2962ff;
&:hover {
background-color: #0d47a1;
color: white;
background-color: #ededf0;
color: #2962ff;
border: 2px solid #2962ff;
color: #2962ff;
}
}

Expand All @@ -22,5 +26,5 @@

.group-join-icon {
padding-right: 10px;
color: white;
color: #2962ff;
}
4 changes: 2 additions & 2 deletions style/homepage-navv2.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

.navbar-brand {
padding-left: 3em;
}
Expand All @@ -8,7 +7,8 @@
}

.navbar-item img {
max-height: 3rem;
width: 100%;
height: 400px;
}

.home-nav {
Expand Down
4 changes: 2 additions & 2 deletions style/library-table-entries.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ tr:nth-child(even) {
}

.library-columns p {
font-size: 0.75rem;
font-size: 1em;
text-transform: uppercase;
color: #666666;
}
Expand All @@ -49,7 +49,7 @@ tr:nth-child(even) {
}

.table p {
font-size: 0.75rem;
font-size: 0.9em;
text-transform: uppercase;
}

Expand Down
5 changes: 2 additions & 3 deletions style/tag-menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@
color: #212121;
text-transform: uppercase;
font-weight: 500;
font-size: 0.75em;
font-size: 0.9em;
}

.add-menu-label {
color: #212121;
text-transform: uppercase;
font-weight: 500;
font-size: 0.75em;
font-size: 1em;
&:hover {
color: #0060df;
}
Expand Down

1 comment on commit 3ff7e0a

@datreeio
Copy link

@datreeio datreeio bot commented on 3ff7e0a Jun 7, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All Rules (6 / 6) Passed

👑 Good job! this pull request is aligned with your organization's best practices!

👉 You can review your rules settings at smart policy management 👈

Please sign in to comment.