Static Site
This commit is contained in:
51
Static/package/dist/collection/components/chips/chip.css
vendored
Normal file
51
Static/package/dist/collection/components/chips/chip.css
vendored
Normal file
@ -0,0 +1,51 @@
|
||||
:root {
|
||||
--ifx-font-family: "Source Sans 3";
|
||||
font-family: var(--ifx-font-family, sans-serif);
|
||||
}
|
||||
|
||||
:host {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.container {
|
||||
position: relative;
|
||||
font-family: var(--ifx-font-family);
|
||||
}
|
||||
.container .wrapper {
|
||||
display: inline-flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
padding: 8px 16px;
|
||||
gap: 8px;
|
||||
background: #FFFFFF;
|
||||
border: 1px solid #BFBBBB;
|
||||
border-radius: 100px;
|
||||
}
|
||||
.container .wrapper:hover {
|
||||
cursor: pointer;
|
||||
border: 1px solid #575352;
|
||||
}
|
||||
.container .wrapper:active {
|
||||
border: 1px solid #0A8276;
|
||||
}
|
||||
.container .wrapper .wrapper-label {
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 0.875rem;
|
||||
line-height: 1.25rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: #1D1D1D;
|
||||
flex: none;
|
||||
order: 0;
|
||||
flex-grow: 0;
|
||||
}
|
||||
.container .wrapper .wrapper-close-button ifx-icon {
|
||||
transition: 0.3s;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
}
|
||||
.container .wrapper .wrapper-close-button.show ifx-icon {
|
||||
transition: 0.3s;
|
||||
transform: rotate(-180deg);
|
||||
}
|
Reference in New Issue
Block a user