strapi-plugin-documentation
Version:
Create an OpenAPI Document and visualize your API with SWAGGER UI.
60 lines (53 loc) • 1.03 kB
JavaScript
import styled from 'styled-components';
const ContainerFluid = styled.div`
padding: 18px 30px;
> div:first-child {
max-height: 33px;
}
.buttonOutline {
height: 30px;
padding: 0 15px;
border: 1px solid #dfe0e1;
font-weight: 500;
font-size: 13px;
&:before {
margin-right: 10px;
content: '\f08e';
font-family: 'FontAwesome';
font-size: 10px;
}
}
`;
const StyledRow = styled.div`
padding-top: 11px;
> div:last-child {
> div {
padding-bottom: 0 !important;
}
}
> div:first-child {
> div {
margin-bottom: 22px !important;
}
}
`;
const VersionWrapper = styled.div`
margin-top: -9px;
margin-left: -28px;
margin-right: -28px;
> div:first-child {
height: 18px;
line-height: 16px;
border-bottom: 0;
> div:nth-child(2) {
font-weight: 600;
color: #9ea7b8;
}
}
> div:last-child {
> div {
border-bottom: none;
}
}
`;
export { ContainerFluid, StyledRow, VersionWrapper };