DocSpace-client/packages/asc-web-components/campaigns-banner/styled-campaigns-banner.js

42 lines
661 B
JavaScript

import styled from "styled-components";
const BannerWrapper = styled.div`
width: 212px;
border: 1px solid #d1d1d1;
border-radius: 5px;
padding: 15px;
margin-top: 20px;
a {
text-decoration: none;
color: #000;
}
img {
max-width: 180px;
height: auto;
}
.banner-btn {
width: 100%;
color: #fff;
background: #ed7309;
margin-top: 15px;
border: none;
border-radius: 5px;
}
`;
const BannerHeader = styled.div`
font-size: 16px;
font-weight: 700;
`;
const BannerText = styled.div`
font-size: 12px;
font-weight: 600;
padding-bottom: 10px;
`;
export { BannerWrapper, BannerHeader, BannerText };