Skip to content
Commits on Source (3)
# [21.7.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v21.6.0...v21.7.0) (2020-09-23)
### Features
* **css:** Add gl-xs-align-items-baseline utility class ([932b19a](https://gitlab.com/gitlab-org/gitlab-ui/commit/932b19ada7ac13e849d247ba3cc822d684122e43))
# [21.6.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v21.5.0...v21.6.0) (2020-09-22)
......
{
"name": "@gitlab/ui",
"version": "21.6.0",
"version": "21.7.0",
"description": "GitLab UI Components",
"license": "MIT",
"main": "dist/index.js",
......
......@@ -17,6 +17,12 @@
align-items: stretch;
}
@mixin gl-xs-align-items-baseline {
@media (max-width: $breakpoint-sm) {
@include gl-align-items-baseline;
}
}
@mixin gl-md-align-items-center {
@media (min-width: $breakpoint-md) {
@include gl-align-items-center;
......