theme ui tutorial code example
Example 1: uikit theme
// CSS rule
.uk-panel {
background: @background;
// mixin to add new declaration
.hook-panel;
}
Example 2: uikit theme
// mixin to add new declaration
.hook-panel() { color: #fff; }
Example 3: uikit theme
// new value
@button-height: 35px;