Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Merge pull request #648 from LiskHQ/627-add-card-shadow
Browse files Browse the repository at this point in the history
Give cards back their shadow - Closes #627
slaweet authored Aug 24, 2017

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents e3dd8db + eef9e35 commit ae0a1b0
Showing 3 changed files with 11 additions and 6 deletions.
3 changes: 0 additions & 3 deletions src/components/passphrase/passphrase.css
Original file line number Diff line number Diff line change
@@ -26,6 +26,3 @@ hr {
.templateItem {
min-height: 130px;
}
:global .box {
box-shadow: none !important;
}
4 changes: 1 addition & 3 deletions src/components/passphrase/passphrase.js
Original file line number Diff line number Diff line change
@@ -57,9 +57,7 @@ class Passphrase extends React.Component {
<div>
<section className={`${styles.templateItem} ${grid['middle-xs']}`}>
<div className={grid['col-xs-12']}>
<div className='box'>
{ templates[current] }
</div>
{ templates[current] }
</div>
</section>

10 changes: 10 additions & 0 deletions src/components/tabs/tabs.css
Original file line number Diff line number Diff line change
@@ -5,6 +5,16 @@
padding-left: 24px;
}

.navigationContainer {
overflow: hidden;
margin-left: -2px;
}
.navigationContainer .navigation {
padding-left: 0;
box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.12);
margin-left: 2px;
}

.tabs nav {
overflow: hidden;
}

0 comments on commit ae0a1b0

Please sign in to comment.