Skip to content

Commit

Permalink
feat: Update borders color (#687)
Browse files Browse the repository at this point in the history
  • Loading branch information
janmichek committed Mar 21, 2024
1 parent 5d4474d commit b9ea0f8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/AppButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ defineProps({
&--light {
background: var(--color-white);
color: var(--color-midnight);
border: 1px solid var(--color-midnight);
border: 1px solid var(--color-midnight-55);
}
&:disabled {
Expand Down
2 changes: 1 addition & 1 deletion src/components/AppSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const selectedValue = useVModel(props, 'modelValue', emit)
&__tags {
border-radius: 8px;
border-color: var(--color-midnight);
border-color: var(--color-midnight-55);
border-width: 1px;
cursor: pointer;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/CodeEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const codeModel = ref(props.code)
<style scoped>
.code-editor {
height: 400px;
border: 1px solid var(--color-midnight);
border: 1px solid var(--color-midnight-55);
border-radius: 8px
}
</style>
Expand Down
2 changes: 1 addition & 1 deletion src/components/PaginationButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ defineEmits(['click'])
line-height: 20px;
font-weight: 500;
font-family: var(--font-primary);
border: 1px solid var(--color-midnight);
border: 1px solid var(--color-midnight-55);
border-radius: 4px;
cursor: pointer;
user-select: none;
Expand Down
2 changes: 1 addition & 1 deletion src/components/TheSearchBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function isMicroblockId(query) {
align-items: center;
height: 40px;
background: var(--color-white);
border: 1px solid var(--color-midnight);
border: 1px solid var(--color-midnight-55);
border-radius: 8px;
&__submit {
Expand Down
4 changes: 2 additions & 2 deletions src/styles/elements/_input.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
input[type='text'] {
border-radius: 8px;
line-height: 20px;
border-color: var(--color-midnight);
border-color: var(--color-midnight-55);
border-width: 1px;

font-size: 16px;
Expand All @@ -19,4 +19,4 @@ input[type='text'] {

input[type='checkbox'] {
margin: 0;
}
}

0 comments on commit b9ea0f8

Please sign in to comment.