mirror of
https://github.com/google/blockly.git
synced 2026-04-28 16:10:21 +02:00
28 lines
642 B
CSS
28 lines
642 B
CSS
/* Makes our label white. */
|
|
.blocklyToolboxCategoryLabel {
|
|
color: #fff;
|
|
}
|
|
/* Adds padding around the group of categories and separators. */
|
|
.blocklyToolboxCategoryGroup {
|
|
padding: 0.5em;
|
|
}
|
|
/* Adds space between the categories, rounds the corners and adds space around the label. */
|
|
.blocklyToolboxCategory {
|
|
padding: 3px;
|
|
margin-bottom: 0.5em;
|
|
border-radius: 4px;
|
|
}
|
|
/* Changes color of the icon to white. */
|
|
.customIcon {
|
|
color: #fff;
|
|
}
|
|
/* Stacks the icon on top of the label. */
|
|
.blocklyTreeRowContentContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.blocklyToolboxCategory {
|
|
height: initial;
|
|
}
|