mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 01:33:54 +01:00
25 lines
444 B
SCSS
25 lines
444 B
SCSS
/**
|
|
* Styling for the Augmentations UI. This is the page that displays all of the
|
|
* player's owned and purchased Augmentations and Source-Files. It also allows
|
|
* the player to install Augmentations
|
|
*/
|
|
@import "theme";
|
|
|
|
.augmentations-content {
|
|
> p {
|
|
font-size: $defaultFontSize * 0.875;
|
|
}
|
|
}
|
|
|
|
.augmentations-list {
|
|
button,
|
|
div {
|
|
color: var(--my-font-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
button {
|
|
padding: 4px;
|
|
}
|
|
}
|