mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
28 lines
502 B
SCSS
28 lines
502 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-container {
|
||
|
position: fixed;
|
||
|
padding-top: 10px;
|
||
|
}
|
||
|
|
||
|
.augmentations-list {
|
||
|
button,
|
||
|
div {
|
||
|
color: var(--my-font-color);
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
padding: 2px 5px;
|
||
|
}
|
||
|
|
||
|
div {
|
||
|
padding: 6px;
|
||
|
}
|
||
|
}
|