Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Commit 5cf3b98

Browse files
committed
Code cleanup
1 parent 92827ea commit 5cf3b98

File tree

2 files changed

+8
-67
lines changed

2 files changed

+8
-67
lines changed

src/sass/static/pages.scss

Lines changed: 0 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1614,60 +1614,5 @@ body #not_authenticated_financial ul.checked > li {
16141614
margin: 0 auto;
16151615
width: 1008px;
16161616
font-size: 10px;
1617-
//font-family: $FONT_STACK;
1618-
//text-rendering: optimizeLegibility;
1619-
//-webkit-font-smoothing: antialiased;
1620-
//-moz-osx-font-smoothing: grayscale;
1621-
//-webkit-text-size-adjust: 100%;
1622-
//-ms-text-size-adjust: 100%;
1623-
//box-sizing: border-box;
16241617
position: relative;
1625-
//
1626-
//h1, h2, h3, h4, h5, h6, p {
1627-
// margin: 0;
1628-
// padding: 0;
1629-
// border: 0;
1630-
// vertical-align: baseline;
1631-
//}
1632-
//input {
1633-
// &:hover, &:focus {
1634-
// border: none;
1635-
// }
1636-
//}
1637-
//.btn { // rebuild 14
1638-
// &--primary {
1639-
// &:active, &:focus {
1640-
// background: var(--button-primary-hover);
1641-
// }
1642-
// }
1643-
// &--secondary {
1644-
// &:active, &:focus {
1645-
// background: var(--button-secondary-hover);
1646-
// }
1647-
// }
1648-
// &--tertiary {
1649-
// &:active, &:focus {
1650-
// background: var(--button-tertiary-hover);
1651-
// }
1652-
// }
1653-
//}
1654-
//.dc-tabs {
1655-
// &__list {
1656-
// height: 41px;
1657-
// }
1658-
//}
1659-
//.dc-toggle-switch {
1660-
// &__label {
1661-
// &:before {
1662-
// display: none;
1663-
// }
1664-
// }
1665-
//}
1666-
//.buy-sell {
1667-
// &__header {
1668-
// &__filters {
1669-
// width: 120px;
1670-
// }
1671-
// }
1672-
//}
16731618
}

src/templates/app/cashier/dp2p.jsx

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
import React from 'react';
22

3-
// eslint-disable-next-line arrow-body-style
4-
const DP2P = () => {
5-
6-
return (
7-
<React.Fragment>
8-
<div className='invisible' id='message_cashier_unavailable'>
9-
<p className='notice-msg center-text'>{it.L('Sorry, this feature is not available in your jurisdiction.')}</p>
10-
</div>
11-
<div id='binary-dp2p' />
12-
</React.Fragment>
13-
);
14-
};
3+
const DP2P = () => (
4+
<React.Fragment>
5+
<div className='invisible' id='message_cashier_unavailable'>
6+
<p className='notice-msg center-text'>{it.L('Sorry, this feature is not available in your jurisdiction.')}</p>
7+
</div>
8+
<div id='binary-dp2p' />
9+
</React.Fragment>
10+
);
1511

1612
export default DP2P;

0 commit comments

Comments
 (0)