Skip to content

Commit 1b0e430

Browse files
Merge branch 'develop' of https://github.com/Thorium-Sim/thorium into develop
2 parents 9b6fc32 + 8355bd7 commit 1b0e430

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

src/components/layouts/LayoutCautionTape/style.scss

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $alertp: #7a24cf;
3838

3939
@mixin card-variant($background) {
4040
$background: lighten(desaturate($background, 20%), 10%);
41-
background: rgba($background, 0.1);
41+
background: rgba($background, 0.15);
4242
border: solid 1px $background;
4343
box-shadow: inset 0px 0px 20px -5px rgba(saturate($background, 10%), 0.5),
4444
0px 0px 15px -2px rgba(saturate($background, 10%), 1);
@@ -47,7 +47,7 @@ $alertp: #7a24cf;
4747
@mixin input-variant($background) {
4848
color: white;
4949
$background: lighten(desaturate($background, 20%), 10%);
50-
background: rgba(desaturate($background, 20%), 0.1);
50+
background: rgba(desaturate($background, 20%), 0.15);
5151
border: solid 1px desaturate($background, 20%);
5252
box-shadow: inset 0px 0px 20px -5px rgba(desaturate($background, 20%), 0.5),
5353
0px 0px 15px -2px rgba(desaturate($background, 20%), 1);
@@ -110,6 +110,7 @@ $alertp: #7a24cf;
110110
.layout-cautiontape {
111111
background-color: black;
112112
color: white;
113+
font-family: "Saira", sans-serif;
113114

114115
.card-switcher-holder {
115116
z-index: 100;
@@ -255,11 +256,11 @@ $alertp: #7a24cf;
255256
height: 100%;
256257
}
257258
.card-area {
258-
top: 84px;
259-
left: 100px;
260-
right: 40px;
261-
width: calc(100% - 110px);
262-
height: calc(100% - 180px);
259+
top: 100px;
260+
left: 108px;
261+
right: 48px;
262+
width: calc(100% - 126px);
263+
height: calc(100% - 196px);
263264
position: relative;
264265
}
265266
&.viewscreen {

src/components/macros/removeLibraryEntry.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
import React from "react";
22
import {FormGroup, Label, Input} from "helpers/reactstrap";
33

4-
export default ({updateArgs, args: {entry = {}}, client}) => {
4+
export default ({updateArgs, args: {slug = ""}}) => {
55
return (
66
<FormGroup className="macro-addLibraryEntry">
77
<Label>
88
Slug <small>Use this identifier to remove the entry.</small>
99
</Label>
1010
<Input
1111
type="text"
12-
defaultValue={entry.slug}
12+
defaultValue={slug}
1313
onBlur={evt =>
1414
updateArgs(
15-
"entry",
16-
Object.assign({}, entry, {slug: evt.target.value}),
15+
"slug",
16+
evt.target.value ? evt.target.value : "",
1717
)
1818
}
1919
/>

0 commit comments

Comments
 (0)