Skip to content

Commit

Permalink
chore: update gitrepo file
Browse files Browse the repository at this point in the history
  • Loading branch information
Lisi Linhart committed Feb 16, 2024
1 parent 60c3bff commit 231fa43
Show file tree
Hide file tree
Showing 19 changed files with 26 additions and 19 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Build dependencies
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Release
Expand Down
1 change: 1 addition & 0 deletions src/assets/styles/global.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@import './resets';
@import './css-color-variables';
@import 'https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap';

html {
Expand Down
6 changes: 6 additions & 0 deletions src/assets/styles/mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,3 +143,9 @@
border-radius: $s-1;
}
}

@mixin transition($props) {
transition-duration: 100ms;
transition-property: $props;
transition-timing-function: ease-in-out;
}
1 change: 0 additions & 1 deletion src/assets/styles/variables.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@import './css-color-variables';
@import './old-colors';
@import './colors';
@import './animation';
Expand Down
2 changes: 1 addition & 1 deletion src/components/Datepicker/datepicker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
position: absolute;
right: $s-7;
top: 50%;
color: $text-gray-light;
color: $text-gray;
font-size: $font-12;
transform: translateY(-50%);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/EmptyState/empty.scss
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
.sb-empty-state__router {
position: relative;
margin-top: 10px;
color: $text-gray-light;
color: $text-gray;
font-size: $font-14;
font-weight: $font-medium;
line-height: 20px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Menu/MenuGroup.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div role="group" :data-testid="dataTestid">
<div role="group" :data-testid="dataTestid" class="sb-menu-group">
<p
v-if="title.length"
:class="computedClasses"
Expand Down
4 changes: 4 additions & 0 deletions src/components/Menu/menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@
}

.sb-menu-group {
display: flex;
flex-direction: column;
justify-content: stretch;

&__title {
margin: 0 0 5px;
padding: 10px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Minibrowser/minibrowser.scss
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ $full-height-padding: $general-padding - $padding-full-height-difference;
display: block;
overflow: hidden;
margin-top: 2px;
color: $text-gray-light;
color: $text-gray;
font-size: $font-12;
text-overflow: ellipsis;
white-space: nowrap;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Select/components/select-inner.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.sb-select-inner__chevron-dropdown {
border: none;
border: 0;
}
8 changes: 4 additions & 4 deletions src/components/Select/select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
}

&__chevron {
color: $text-gray-light;
color: $text-gray;
}

&__input {
Expand Down Expand Up @@ -165,7 +165,7 @@

&__clear {
padding: 0;
color: $text-gray-light;
color: $text-gray;
background-color: transparent;
border: 0;
border-radius: 50%;
Expand Down Expand Up @@ -342,7 +342,7 @@
.sb-select-list__item-icon,
.sb-select-list__item-name,
.sb-select-list__item-path {
color: $text-gray-light;
color: $text-gray;
}
}
}
Expand Down Expand Up @@ -397,7 +397,7 @@
.sb-select-list__item-caption {
display: block;
margin-top: 2px;
color: $text-gray-light;
color: $text-gray;
font-size: $font-12;
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/Sidebar/sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
width: 100%;
height: 40%;
max-height: 200px;
background: linear-gradient(transparent 0%, rgba($dark-blue-950, 1) 100%);
background: linear-gradient(transparent 0%, rgba(#1b243f, 1) 100%);
pointer-events: none;
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Tag/tag.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
}

&--dark-ink {
@include setColor($dark-blue-950, $dark-blue-100, $dark-blue-200);
@include setColor($white, $dark-blue-950, $dark-blue-800);
}

.sb-icon {
Expand Down
1 change: 0 additions & 1 deletion src/components/TextField/textfield.scss
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@
color: $text-dark-blue;
font-size: $font-14;
border-radius: $base-border-radius;
transition: $base-transition;

&--disabled {
background: $bg-gray-50;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Toggle/toggle.scss
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,6 @@ $toggle-padding: 4px;

&--inactive {
right: $s-1;
color: $text-gray-light;
color: $text-gray;
}
}
2 changes: 1 addition & 1 deletion src/components/Tooltip/tooltip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
font-size: $font-12;
line-height: 15px;
word-break: break-word;
border-radius: 2px;
border-radius: $base-border-radius;
box-shadow: 0 0 2px 1px rgb(0 0 0 / 8%);

&--dark {
Expand Down
2 changes: 1 addition & 1 deletion stories/Design/Colors/components/ColorTile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const shouldShow = computed(() => {
display: inline-grid;
flex: 0 0 70px;
margin-bottom: 20px;
color: $text-gray-light;
color: $text-gray;
font-size: $font-14;
}
</style>
2 changes: 1 addition & 1 deletion stories/Design/Typography/typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
&__label {
display: inline-block;
margin-bottom: 10px;
color: $text-gray-light;
color: $text-gray;
font-size: $font-14;
font-weight: $font-medium;
}
Expand Down

0 comments on commit 231fa43

Please sign in to comment.