Skip to content

Commit

Permalink
UI Enhancements: Header Menu Item Switch and Dropdown Section Right B…
Browse files Browse the repository at this point in the history
…order
  • Loading branch information
fatihturker committed Sep 1, 2021
1 parent 17367d5 commit f4847d4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@
display: flex;
}

.section-column {
border-right: 0.5px dotted var(--contrast);
}

@media only screen and (max-width: 999px) {
.dropdown-content {
display: block;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ <h2>Open Template Hub</h2>
<a (click)="dropdownMenuProducts.toggleDropdown(); dropdownMenuServices.closeDropdown()">
<app-dropdown-menu #dropdownMenuProducts [options]="PRODUCT_LINES">
<span>Products</span>
<i aria-hidden="true" class="material-icons">expand_more</i>
<i aria-hidden="true" class="material-icons">{{dropdownMenuProducts.isDropdownOpen ? 'expand_less' : 'expand_more'}}</i>
</app-dropdown-menu>
</a>
<a (click)="dropdownMenuServices.toggleDropdown(); dropdownMenuProducts.closeDropdown()">
<app-dropdown-menu #dropdownMenuServices [options]="SERVICES">
<span>Services</span>
<i aria-hidden="true" class="material-icons">expand_more</i>
<i aria-hidden="true" class="material-icons">{{dropdownMenuServices.isDropdownOpen ? 'expand_less' : 'expand_more'}}</i>
</app-dropdown-menu>
</a>
<a routerLink="{{URLS.pricing}}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ app-dropdown-menu i {
}

.top-nav a i {
font-size: 22px;
margin: 0.35em 0.35em 0.35em 0;
font-size: 24px;
margin-left: .05em;
}

@media only screen and (max-width: 999px) {
Expand Down
2 changes: 1 addition & 1 deletion src/styles/theme/themes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

// background
--background-color-light-mode: white;
--background-color-alpha-light-mode: rgba(255, 255, 255, 0.85);
--background-color-alpha-light-mode: rgba(255, 255, 255, 0.93);
--card-light-mode: #fefffe;

--shadow-light-mode: rgba(155, 155, 155, 0.5);
Expand Down

0 comments on commit f4847d4

Please sign in to comment.