27bb03bbc0
* adding copyright header * fix fmt and a test
24 lines
347 B
SCSS
24 lines
347 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
.selectable-card.secondaries {
|
|
grid-column: 2/3;
|
|
grid-row: 1/3;
|
|
|
|
@include until($mobile) {
|
|
grid-column: 1/1;
|
|
grid-row: 1/1;
|
|
}
|
|
|
|
.secondaries-table {
|
|
margin-bottom: $spacing-s;
|
|
}
|
|
|
|
.link {
|
|
font-size: $size-7;
|
|
text-decoration: none;
|
|
}
|
|
}
|