mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-04-24 21:37:36 +00:00

Co-authored-by: Joakim Sørensen <joasoe@gmail.com> Co-authored-by: Franck Nijhof <git@frenck.dev>
27 lines
529 B
SCSS
27 lines
529 B
SCSS
div.details-block {
|
|
width: 100%;
|
|
display: block;
|
|
|
|
.details-block-item {
|
|
background-color: white;
|
|
padding: 4px 16px;
|
|
margin: 8px;
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
|
|
border-radius: 16px;
|
|
|
|
.details-block-title {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
line-height: 21px;
|
|
cursor: pointer;
|
|
height: 54px;
|
|
justify-content: space-between;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.details-block-content {
|
|
margin: 4px 32px 12px 0;
|
|
}
|
|
}
|
|
}
|