Releases: alphasights/paint
Releases · alphasights/paint
v0.7.22
v0.7.21
Changelog
- Add layout sidebar count bubble
- Works for both collapsed and standard states
- Customize default colour using
$layout-sidebar-nav-bubble-background-color
- Add the count after the link title span, with a default
bubble
class
(<span>Menu title</span><span class="bubble">99+</span>
).
ToDo
- Implement Bubble states
v0.7.20
v0.7.19
Changelog
Implement a flip-panel component
Features
- Configurable header / footer for front / back faces ) (ability to hide / show any)
- Backface height automatically matches the front, content becomes scrollable if it exceeds the height
- Ability to set a height for the panel with scrollable content area
v0.7.18
Changelog
Allow applications to easily control typography settings
- Convert typography settings to use sass maps
- Add option to use different letter spacing for different heading tags
Example of app-specific setup:
$app-font-family: "CustomFontFace", "Helvetica Neue", Helvetica, sans-serif;
$body-font-family: $app-font-family;
$header-font-family: $app-font-family;
$font-weight-normal: 300;
$font-weight-bold: 400;
$font-weight-extrabold: 700;
$typography: (
condensed-tags: (
h1: -2px,
h2: -1px,
blockquote: 1px
)
);