Browse Source

style: remove redundant font declarations

renovate/lint-staged-8.x
Tom Kirkpatrick 7 years ago
parent
commit
f85aa10cff
No known key found for this signature in database GPG Key ID: 72203A8EC5967EA8
  1. 1
      app/components/Contacts/ConnectManually.scss
  2. 1
      app/components/Contacts/SubmitChannelForm.scss
  3. 1
      app/components/Form/Pay.scss
  4. 1
      app/components/Form/Request.scss
  5. 3
      app/components/Onboarding/NewWalletSeed.scss
  6. 3
      app/components/Onboarding/RecoverForm.scss
  7. 1
      app/components/Onboarding/Syncing.scss
  8. 1
      app/components/Wallet/ReceiveModal.scss
  9. 25
      app/routes/activity/components/components/Activity.scss

1
app/components/Contacts/ConnectManually.scss

@ -30,7 +30,6 @@
.content { .content {
padding: 0 40px; padding: 0 40px;
font-family: Roboto;
color: $white; color: $white;
.header { .header {

1
app/components/Contacts/SubmitChannelForm.scss

@ -2,7 +2,6 @@
.content { .content {
padding: 0 40px; padding: 0 40px;
font-family: Roboto, sans-serif;
color: $white; color: $white;
margin: 0 auto; margin: 0 auto;
width: 500px; width: 500px;

1
app/components/Form/Pay.scss

@ -2,7 +2,6 @@
.container { .container {
padding: 0 40px; padding: 0 40px;
font-family: Roboto;
margin: 0 auto; margin: 0 auto;
width: 500px; width: 500px;
} }

1
app/components/Form/Request.scss

@ -2,7 +2,6 @@
.container { .container {
padding: 0 40px; padding: 0 40px;
font-family: Roboto;
margin: 0 auto; margin: 0 auto;
width: 500px; width: 500px;
} }

3
app/components/Onboarding/NewWalletSeed.scss

@ -3,14 +3,13 @@
.container { .container {
font-size: 14px; font-size: 14px;
color: $white; color: $white;
font-family: 'Roboto';
letter-spacing: 1.5px; letter-spacing: 1.5px;
li { li {
display: inline-block; display: inline-block;
margin: 5px 0; margin: 5px 0;
width: 25%; width: 25%;
font-family: 'Courier'; font-family: 'Courier', courier, sans-serif;
section { section {
display: inline-block; display: inline-block;

3
app/components/Onboarding/RecoverForm.scss

@ -36,8 +36,7 @@
border: none; border: none;
padding: 5px 10px; padding: 5px 10px;
color: $white; color: $white;
font-family: courier; font-family: 'Courier', courier, sans-serif;
font-family: 'Courier';
&.valid { &.valid {
color: $green; color: $green;

1
app/components/Onboarding/Syncing.scss

@ -4,7 +4,6 @@
position: relative; position: relative;
height: 100vh; height: 100vh;
background: #2a2d38; background: #2a2d38;
font-family: 'Roboto', sans-serif;
} }
.titleBar { .titleBar {

1
app/components/Wallet/ReceiveModal.scss

@ -95,7 +95,6 @@
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
font-family: 'Roboto';
font-size: 10px; font-size: 10px;
font-weight: 200; font-weight: 200;
background: $bluegrey; background: $bluegrey;

25
app/routes/activity/components/components/Activity.scss

@ -7,8 +7,8 @@
height: 76px; height: 76px;
align-items: center; align-items: center;
font-size: 14px; font-size: 14px;
transition: background-color .1s linear; transition: background-color 0.1s linear;
transition-delay: .1s; transition-delay: 0.1s;
color: $white; color: $white;
position: relative; position: relative;
@ -73,12 +73,11 @@
&:nth-child(2) { &:nth-child(2) {
font-size: 10px; font-size: 10px;
} }
.title { .title {
margin-bottom: 10px; margin-bottom: 10px;
font-size: 14px; font-size: 14px;
font-family: Roboto;
} }
.subtitle { .subtitle {
@ -86,16 +85,19 @@
font-size: 10px; font-size: 10px;
} }
.icon, h3, span { .icon,
h3,
span {
vertical-align: middle; vertical-align: middle;
} }
h3, span { h3,
span {
font-size: 14px; font-size: 14px;
font-weight: bold; font-weight: bold;
letter-spacing: 1.2px; letter-spacing: 1.2px;
} }
.icon { .icon {
display: inline-block; display: inline-block;
flex: none; flex: none;
@ -121,8 +123,8 @@
h3 { h3 {
display: inline-block; display: inline-block;
&:after { &::after {
content: " "; content: ' ';
display: inline-block; display: inline-block;
width: 3px; width: 3px;
} }
@ -144,13 +146,14 @@
&:nth-child(1) { &:nth-child(1) {
margin-bottom: 10px; margin-bottom: 10px;
} }
&:nth-child(2) { &:nth-child(2) {
font-size: 10px; font-size: 10px;
opacity: 0.5; opacity: 0.5;
} }
.plus, .minus { .plus,
.minus {
margin-right: 2px; margin-right: 2px;
} }

Loading…
Cancel
Save