We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81ad78b commit 6fa1b23Copy full SHA for 6fa1b23
client/components/mobile/FloatingNav.jsx
@@ -1,7 +1,7 @@
1
import React from 'react';
2
import PropTypes from 'prop-types';
3
import styled from 'styled-components';
4
-import { remSize } from '../../theme';
+import { remSize, prop } from '../../theme';
5
import Button from '../../common/Button';
6
import IconButton from './IconButton';
7
@@ -12,6 +12,9 @@ const FloatingContainer = styled.div`
12
13
text-align: right;
14
z-index: 3;
15
+
16
+ svg { width: ${remSize(32)}; };
17
+ svg > path { fill: ${prop('Button.default.background')} !important };
18
`;
19
20
const FloatingNav = ({ items }) => (
0 commit comments