diff options
Diffstat (limited to 'app/components/Mux/index.js')
-rw-r--r-- | app/components/Mux/index.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/components/Mux/index.js b/app/components/Mux/index.js new file mode 100644 index 0000000..708a09c --- /dev/null +++ b/app/components/Mux/index.js @@ -0,0 +1,21 @@ +import styled from 'styled-components'; + +export const Container = styled.div` + margin: 5px 15px; + margin-top: 20px; + padding: 15px 20px; + border: 1px solid #4d4d4d; + display: flex; + flex-direction: column; + position: relative; +`; + +export const Header = styled.div` + position: absolute; + top: -12px; + left: 10px; + color: #8d8d8d; + background: black; + padding: 0 10px; + font-weight: 700; +`; |