adding border inside shared notes for viewers

This commit is contained in:
gabriellpr 2022-05-23 16:22:31 -03:00
parent 1c187d3e04
commit a77ea836d8

View File

@ -1,6 +1,7 @@
import styled from 'styled-components';
import {
colorGray,
colorGrayLightest
} from '/imports/ui/stylesheets/styled-components/palette';
const Wrapper = styled.div`
@ -42,6 +43,8 @@ top: 0;
const Iframe = styled.iframe`
border-width: 0;
width: 100%;
border-top: 1px solid ${colorGrayLightest};
border-bottom: 1px solid ${colorGrayLightest};
`;
export default {