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

46 lines
690 B
JavaScript

import styled from "styled-components";
const BannerWrapper = styled.div`
width: 185px;
border: 1px solid #d1d1d1;
border-radius: 5px;
padding: 15px;
margin-top: 20px;
@media screen and (max-width: 1024px) {
width: 196px;
}
a {
text-decoration: none;
color: #000;
}
img {
max-width: 180px;
height: auto;
margin-top: 10px;
}
.banner-sub-header {
line-height: 1.5;
}
.banner-btn {
width: 100%;
color: #fff;
background: #ed7309;
margin-top: 15px;
border: none;
border-radius: 5px;
}
.banner-btn:active {
color: #fff;
background: #ed7309;
border: none;
}
`;
export default BannerWrapper;