File size: 474 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
.help-center .inline-help__launchpad-container {
display: block;
margin-bottom: 24px;
border-radius: 2px;
border: 1px solid var(--studio-gray-10);
cursor: pointer;
&:hover {
background: #f9f9f9;
}
.inline-help__launchpad-link {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
text-decoration: none;
color: var(--studio-gray-100);
padding: 16px;
.inline-help-launchpad-link-text {
font-size: 0.875rem;
}
}
}
|