glide-design-system
Version:
Glide design system is an open-source React component library. It offers numerous benefits that make them essential tools for design and development teams.
61 lines (55 loc) • 1.05 kB
CSS
.accordianParent {
margin: 10px;
background-color: white;
}
.title {
display: flex;
align-items: center;
}
.accordianContainer {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.accordianIcon {
padding: 8px;
height: 20px;
}
.accordion {
color: #444;
cursor: pointer;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 12px;
transition: 0.4s;
font-family: "Roboto", sans-serif;
font-weight: 500;
background-color: white;
border: 1px solid rgb(215, 215, 215);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.accordianClose {
border-radius: 5px;
}
.panel {
background-color: white;
overflow: hidden;
font-family: "Roboto", sans-serif;
margin-left: 5px;
margin-right: 5px;
font-size: 16px;
}
.content {
border: 1px solid rgb(215, 215, 215);
border-top: none;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.closeContent {
border: 1px solid rgb(215, 215, 215);
border-bottom: none;
border-top: none;
}