khusamov / khusamov.github.io

Инструкции на все случаи жизни программиста
http://khusamov.github.io
1 stars 0 forks source link

Добавить CSS-сниппет #9

Open khusamov opened 1 year ago

khusamov commented 1 year ago
/**
 * Выравнивание по центру.
 * @link https://habr.com/ru/post/189696/
 */

@mixin base {
    position: absolute;
    margin: auto;
    width: fit-content;
}

@mixin absolute-bottom-center {
    @include base;
    left: 0;
    bottom: 20px;
    right: 0;
}

@mixin absolute-bottom-left {
    @include base;
    left: 20px;
    bottom: 20px;
}

@mixin absolute-top-center {
    @include base;
    left: 0;
    top: 20px;
    right: 0;
}

https://github.com/khusamov/solid-futurio-ru-game/blob/main/packages/khusamov-game/src/plugins/CobraSpaceshipPlugin/Params/absoluteBlockAlign.scss