Skip to content

Commit

Permalink
added borders to panels
Browse files Browse the repository at this point in the history
  • Loading branch information
lghiur committed Jul 12, 2024
1 parent d66fc38 commit 4460dc8
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lib/index.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/index.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/sass/common/sass/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ $form-control-addon-padding-left: 10px !default;
$form-control-addon-padding-right: 10px !default;
$form-control-border: $general-border-width solid theme-color('secondary', 'dark') !default;
$form-control-disabled-border: $general-border-width solid theme-color('secondary', 'base-dark') !default;
$form-control-placeholder-color: #A2A2CC !default;
$form-control-placeholder-color: --color-secondary--dark !default;
$form-control-disabled-background-color: $color-background !default;
$form-control-disabled-color: $text-color !default;
$form-control-border-focus: 2px solid theme-color('success', 'base') !default;
Expand Down
2 changes: 1 addition & 1 deletion lib/tyk-ui.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/tyk-ui.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tyk-technologies/tyk-ui",
"version": "4.3.0-alpha2",
"version": "4.3.0-alpha3",
"description": "Tyk UI - ui reusable components",
"main": "src/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/common/sass/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ $form-control-addon-padding-left: 10px !default;
$form-control-addon-padding-right: 10px !default;
$form-control-border: $general-border-width solid theme-color('secondary', 'dark') !default;
$form-control-disabled-border: $general-border-width solid theme-color('secondary', 'base-dark') !default;
$form-control-placeholder-color: #A2A2CC !default;
$form-control-placeholder-color: --color-secondary--dark !default;
$form-control-disabled-background-color: $color-background !default;
$form-control-disabled-color: $text-color !default;
$form-control-border-focus: 2px solid theme-color('success', 'base') !default;
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavBar/NavBar.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

.tyk-nav-bar {
align-items: center;
border: none;
border-bottom: var(--general-border-width) solid var(--color-secondary-dark);
background-color: var(--nav-bar-background-color);
font-family: var(--nav-bar-font-family);
color: var(--nav-bar-text-color);
Expand Down
3 changes: 2 additions & 1 deletion src/components/Panel/Panel.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
.tyk-panel {
background: white;
border-radius: var(--panel-border-radius);
border: 1px solid var(--color-secondary-dark);
margin-block-end: 20px;
font-family: var(--font-family-medium);
font-family: var(--font-family-regular);
position: relative;

&.has-error,
Expand Down

0 comments on commit 4460dc8

Please sign in to comment.