あくまで自分用の覚え書きなので文章とか適当です...

    .button {
        position: relative;
        display: inline-block;

        &::after {
            position: absolute;
            top: 45%;
            right: 23px;
            width: 6px;
            height: 6px;
            content: "";
            border: 2px solid;
            border-color: #fff #fff transparent transparent;
            transform: rotate(45deg);
        }
    }
スポンサーリンク