mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-12 20:14:12 +00:00
e3505fd958
* Empty component, routes setup. * Shared components for all Contracts inputs. Dont do anything yet. * Check in reducer work so far. Still WIP. * Header styling * Check in input work so far, splitting to new branch. * Strip down contracts inputs. Split out into form and explorer * Contract selector * Constantized config actions to use in contract saga. * Interact explorer UI, no functionality * Convert to constants, hook up errors * Deploy and style cleanup. * Remove unnecessary class. * Fix flow errors with css modules * Attempt at fixing all newly introduced flow errors in the contracts branch. * Removed unused validator. * Remove action constants, fix flow specificity in reducers * Fix unit tests * Move network contracts out of redux / sagas, and read directly from state with a selector in mapStateToProps. * Fix initialState -> INITIAL_STATE rename * foreach push -> concat
31 lines
399 B
SCSS
31 lines
399 B
SCSS
@import "common/sass/variables";
|
|
@import "common/sass/mixins";
|
|
|
|
.Contracts {
|
|
&-header {
|
|
text-align: center;
|
|
margin: 2rem 0;
|
|
|
|
&-tab {
|
|
@include reset-button;
|
|
color: $ether-blue;
|
|
|
|
&:hover,
|
|
&:active {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
&.is-active {
|
|
&,
|
|
&:hover,
|
|
&:active {
|
|
color: $text-color;
|
|
cursor: default;
|
|
opacity: 1;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|