vault/ui/app/styles/components/read-more.scss
Hamid Ghaf e55c18ed12
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

24 lines
373 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
.linkable-item-seemore {
grid-column: 2;
grid-row: 1;
align-self: baseline;
}
.overflow-ellipsis {
box-sizing: border-box;
&.is-closed {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
.has-font-weight-normal {
font-weight: $font-weight-normal;
}