-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #422 from openaddresses/actions-update
[UI] Less Stroke
- Loading branch information
Showing
51 changed files
with
5,481 additions
and
3,061 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,21 +2,37 @@ | |
<div class='z2 fixed top right bottom left scroll-auto bg-darken50'> | ||
<div class='flex flex--center-main pt36'> | ||
<div class='bg-white round relative w600'> | ||
<button @click='$emit("err", false)' class='absolute top right px12 py12'> | ||
<svg class='icon link color-darken50'><use xlink:href='#icon-close'></use></svg> | ||
<button | ||
class='absolute top right px12 py12' | ||
@click='$emit("err", false)' | ||
> | ||
<svg class='icon link color-darken50'><use xlink:href='#icon-close' /></svg> | ||
</button> | ||
|
||
<div class='flex flex--center-main'> | ||
<div class='pt12'> | ||
<svg class='icon h60 w60 color-gray'><use href='#icon-alert'/></svg> | ||
<svg class='icon h60 w60 color-gray'><use href='#icon-alert' /></svg> | ||
</div> | ||
</div> | ||
|
||
<div class='txt-l mb12 align-center'>Uh Oh!</div> | ||
<div class='txt-m align-center' v-text='err.message'></div> | ||
<div class='txt-l mb12 align-center'> | ||
Uh Oh! | ||
</div> | ||
<div | ||
class='txt-m align-center' | ||
v-text='err.message' | ||
/> | ||
|
||
<a href='mailto:[email protected]' class='fl btn btn--stroke btn--gray round ml12'>Contact Us</a> | ||
<button @click='$emit("err", false)' class='fr mb12 mr12 btn round btn--gray btn--stroke'>Ok</button> | ||
<a | ||
href='mailto:[email protected]' | ||
class='fl btn btn--stroke btn--gray round ml12' | ||
>Contact Us</a> | ||
<button | ||
class='fr mb12 mr12 btn round btn--gray btn--stroke' | ||
@click='$emit("err", false)' | ||
> | ||
Ok | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.