Skip to content

Commit

Permalink
fix(style): svg scales
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveVanOpstal committed Aug 19, 2016
1 parent c4405e2 commit 70ed9ba
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/client/assets/images/angular2.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/client/assets/images/error.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/client/assets/images/eye.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/client/assets/images/hourglass.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/client/assets/images/load.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/client/assets/images/logo.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/client/assets/images/refresh.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 8 additions & 3 deletions src/client/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ p {
}

.header > .align-center {
max-width: 425px;
max-width: 440px;
display: flex;
}

Expand Down Expand Up @@ -117,12 +117,17 @@ help .content {
color: #555;
}

/* icons */
/* loading */

.loading {
display: flex;
}

.icon.load {
padding: 10px;
animation: spin 0.8s linear infinite;
fill:#AAA;
margin: 0 auto;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

Expand Down Expand Up @@ -213,7 +218,7 @@ button:disabled {
justify-content: space-between;
background-color: transparent;
padding: 10px;
font-size: 1.5em;
font-size: 1.3em;
}

.error-item .error-text {
Expand Down
4 changes: 3 additions & 1 deletion src/client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ <h1>Legend Builder</h1>
</div>
<div class="content">
<app>
<%= require('./assets/images/load.svg') %>
<div class="loading">
<%= require('./assets/images/load.svg') %>
</div>
</app>
</div>

Expand Down

0 comments on commit 70ed9ba

Please sign in to comment.