Skip to content

Commit 6a0c603

Browse files
committed
fixes to the site
1 parent c43fc06 commit 6a0c603

3 files changed

Lines changed: 7 additions & 10 deletions

File tree

site/src/app/components/button/button.component.scss

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
@import "../../styles/colors.scss";
22

33
:host {
4-
display: flex;
5-
align-items: center;
6-
justify-content: center;
7-
flex-direction: row;
4+
display: inline-block;
85
padding: 10px;
96
border: 1px solid $dark;
107
border-radius: 5px;

site/src/app/routes/root/home/sections/overview/overview.component.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
<div fxLayout="row" fxLayout.lt-md="column" fxLayoutAlign="center center" fxLayoutGap="200px" fxLayoutGap.lt-md="0px">
1+
<div fxLayout="row" fxLayout.lt-md="column" fxLayoutAlign="center center">
22
<div fxLayout="column" fxLayoutAlign="space-around center" class="info">
33
<img width="144" height="144" src="assets/icon.svg">
44
<div style="position: relative;">
55
<h2>eqMac</h2><div class="beta-tag"><span>Beta</span></div>
66
</div>
77
<h3>Free Audio Equalizer for macOS</h3>
88
<div fxLayout="row" fxFill="100%" fxLayoutAlign="center center" fxLayoutGap="20px">
9-
<a *ngIf="url" [href]="url" fxFlex="80%" download="eqmac.dmg">
10-
<eqm-button class="icon-gradient-middle-bg dark">
9+
<a *ngIf="url" [href]="url" fxFlex="40%" download="eqmac.dmg">
10+
<eqm-button fxFlex="100%" class="icon-gradient-middle-bg dark">
1111
Download
1212
</eqm-button>
1313
</a>
14-
<eqm-button *ngIf="!url" fxFlex="80%" class="icon-gradient-middle-bg dark" (pressed)="downloadPressed.emit()">
14+
<eqm-button *ngIf="!url" fxFlex="40%" class="icon-gradient-middle-bg dark" (pressed)="downloadPressed.emit()">
1515
Download
1616
</eqm-button>
17-
<eqm-button fxFlex="80%" (pressed)="takeATourPressed.emit()">
17+
<eqm-button fxFlex="40%" (pressed)="takeATourPressed.emit()">
1818
Take a tour
1919
</eqm-button>
2020
</div>

site/src/app/routes/root/home/sections/overview/overview.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
.screenshot {
2424
// border: 1px solid black;
25-
margin: 30px 0;
25+
margin: 30px;
2626
// $shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.2);
2727
// box-shadow: $shadow;
2828
// -moz-box-shadow: $shadow;

0 commit comments

Comments
 (0)