mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 00:06:01 +00:00
modal styles
This commit is contained in:
12
packages/web/src/modals/ModalContent.js
Normal file
12
packages/web/src/modals/ModalContent.js
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import styled from 'styled-components';
|
||||
|
||||
const Wrapper = styled.div`
|
||||
border-bottom: 1px solid #ccc;
|
||||
border-top: 1px solid #ccc;
|
||||
padding: 15px;
|
||||
`;
|
||||
|
||||
export default function ModalContent({ children }) {
|
||||
return <Wrapper>{children}</Wrapper>;
|
||||
}
|
||||
Reference in New Issue
Block a user