mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
28 lines
555 B
SCSS
28 lines
555 B
SCSS
.hash-cell {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: $pad-xsmall;
|
|
|
|
&__sha256 {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 70px; // Consistent to align copy icons
|
|
}
|
|
|
|
&__copy-overlay {
|
|
display: flex;
|
|
position: relative;
|
|
left: -100px; // diff from installer details widget
|
|
height: 25px; // diff from installer details widget
|
|
align-self: center; // diff from installer details widget
|
|
}
|
|
|
|
&__sha-copy-button {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
&__copy-message {
|
|
@include copy-message;
|
|
}
|
|
}
|