Skip to content

Commit fe9f35a

Browse files
committed
💄 update sketch list header alignment and font size
2 parents 229c512 + 8c5c90b commit fe9f35a

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

client/modules/App/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class App extends React.Component {
3434
render() {
3535
return (
3636
<div className="app">
37-
{/* FIXME: remove false */}
37+
{/* FIXME: Remove false */}
3838
{false && this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
3939
{this.props.children}
4040
</div>

client/modules/Mobile/MobileViewContent.jsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,13 @@ import { remSize } from '../../theme';
66
export default styled.div`
77
z-index: 0;
88
margin-top: ${props => remSize(props.slimheader ? 50 : 68)};
9+
10+
.sketch-list__sort-button { padding: 0 }
11+
12+
td { font-size: ${remSize(10)} };
13+
th {
14+
font-size: ${remSize(14)};
15+
/* font-weight: bold; */
16+
max-width: ${remSize(140)}
17+
};
918
`;

client/utils/custom-hooks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const useModalBehavior = (hideOverlay) => {
2121

2222
// Return values
2323
const setRef = (r) => { ref.current = r; };
24-
const [visible, setVisible] = useState(true);
24+
const [visible, setVisible] = useState(false);
2525
const trigger = () => setVisible(!visible);
2626

2727
const hide = () => setVisible(false);

0 commit comments

Comments
 (0)