Web:Files:Component: change styles of select size buttons of embedding panel

This commit is contained in:
Timofey Boyko 2022-04-08 19:42:23 +03:00
parent 3424c13f1c
commit 04206a0cd0

View File

@ -363,11 +363,21 @@ const StyledBody = styled.div`
display: flex;
.embedding-panel_link {
margin-right: 8px;
height: 32px;
background-color: ${(props) =>
props.theme.filesPanels.body.backgroundColor};
line-height: 30px;
padding: 0px 8px;
border: 1px solid #eceef1;
border-radius: 16px;
line-height: 20px;
padding: 3px 15px;
box-sizing: border-box;
text-decoration: none;
}
.embedding-panel_active-link {
background: #265a8f;
color: #ffffff;
}
}
@ -1071,13 +1081,14 @@ const StyledModalRowContainer = styled.div`
.embedding-panel_links-container {
display: flex;
.embedding-panel_link {
margin-right: 8px;
height: 32px;
background-color: ${(props) =>
props.theme.filesPanels.modalRow.backgroundColor};
border: 1px solid #eceef1;
border-radius: 16px;
line-height: 30px;
padding: 0px 8px;
padding: 4px 15px;
}
}