mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2026-01-10 22:21:40 +00:00
25 lines
605 B
SCSS
25 lines
605 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
@import './reset';
|
|
@import 'ember-basic-dropdown';
|
|
@import 'ember-power-select';
|
|
@import './core';
|
|
@import './docs';
|
|
|
|
@mixin font-face($name) {
|
|
@font-face {
|
|
font-family: $name;
|
|
src:
|
|
url('/ui/fonts/#{$name}.woff2') format('woff2'),
|
|
url('/ui/fonts/#{$name}.woff') format('woff');
|
|
}
|
|
}
|
|
|
|
@include font-face('obscure');
|
|
// Font comes from npm package: https://www.npmjs.com/package/text-security
|
|
// We took the font we wanted and moved it into the ui/fonts folder
|
|
@include font-face('text-security-square');
|