Skip to content

Commit 6fa1b23

Browse files
committed
💄 update floating nav button color
1 parent 81ad78b commit 6fa1b23

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

client/components/mobile/FloatingNav.jsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33
import styled from 'styled-components';
4-
import { remSize } from '../../theme';
4+
import { remSize, prop } from '../../theme';
55
import Button from '../../common/Button';
66
import IconButton from './IconButton';
77

@@ -12,6 +12,9 @@ const FloatingContainer = styled.div`
1212
1313
text-align: right;
1414
z-index: 3;
15+
16+
svg { width: ${remSize(32)}; };
17+
svg > path { fill: ${prop('Button.default.background')} !important };
1518
`;
1619

1720
const FloatingNav = ({ items }) => (

0 commit comments

Comments
 (0)