Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/css/DesignWeb.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ variables can be recalled using var(--var-name);
/* Text Size */
--xs-text: 11px;
--small-text: 12px;
--medium-text: 13px;
--medium-text: 14px;
--large-text: 18px;
--xl-text: 24px;
/* Layout */
Expand All @@ -46,7 +46,7 @@ variables can be recalled using var(--var-name);
--hover-bg: rgba(255, 255, 255, 0.1);
--strong-hover-bg: rgba(255, 255, 255, 0.2);
--subtle-bg: rgba(255, 255, 255, 0.05);
--input-bg: rgba(0, 0, 0, 0.25);
--input-bg: rgba(255, 255, 255, 0.08);
--separator-dark: rgba(0, 0, 0, 0.4);
/* Tints */
--accent-tint: rgba(53, 132, 228, 0.15);
Expand Down
7 changes: 2 additions & 5 deletions src/css/DialogRow.css
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@
font-family: inherit;
padding: 4px 8px;
margin-left: auto;
width: 125px;
min-width: 0;
box-sizing: border-box;
}
Expand All @@ -132,7 +133,6 @@
}

.dialogrow-input--number {
width: 120px;
text-align: right;
-moz-appearance: textfield;
}
Expand All @@ -143,12 +143,9 @@
margin: 0;
}

.dialogrow-input--text {
width: 120px;
}
.dialogrow-input--text {}

.dialogrow-input--select {
width: 120px;
cursor: pointer;
}

Expand Down
2 changes: 1 addition & 1 deletion src/css/ToolbarButton.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
.toolbarbutton img {
height: 18px;
width: 18px;
opacity: 0.65;
opacity: 0.85;
transition: opacity 0.15s ease, filter 0.15s ease, transform 0.15s ease;
}

Expand Down
3 changes: 3 additions & 0 deletions src/js/DesignWeb.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ import React, { Component } from 'react';
// 4. npm unlink ./Design-core
//import {Core} from '@design-core/core';

// use local core for development
//import {Core} from '../js/Design-Core/core/core/core.js';

// Use CDN for production - Consider a npm package?
import {Core} from "https://cdn.jsdelivr.net/gh/dubstar-04/Design-Core/core/core/core.js"

Expand Down
Loading