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

46 lines
690 B
JavaScript
Raw Normal View History

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