Skip to content

Commit

Permalink
ci: Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Jul 14, 2023
1 parent a3ed46c commit ea1d7bc
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/basic/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down
2 changes: 1 addition & 1 deletion examples/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down
2 changes: 1 addition & 1 deletion examples/web-components/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down
4 changes: 3 additions & 1 deletion src/styles/_menus.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
position: absolute;
padding: 8px 0;
background: colors.$white;
box-shadow: 0 0 1px rgb(0 0 0 / 30%), 0 2px 16px 2px rgb(15 22 28 / 15%);
box-shadow:
0 0 1px rgb(0 0 0 / 30%),
0 2px 16px 2px rgb(15 22 28 / 15%);
border-radius: 8px;

.seam-menu-item {
Expand Down
3 changes: 2 additions & 1 deletion src/styles/_supported-device-table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ $row-padding: 8px;
color: colors.$text-gray-1;
border-radius: 30px;
border: 0;
box-shadow: 0 1px 1px 0 rgb(16 27 37 / 10%),
box-shadow:
0 1px 1px 0 rgb(16 27 37 / 10%),
0 1px 8px 0 rgb(46 69 82 / 12%);
position: absolute;
left: 50%;
Expand Down
14 changes: 12 additions & 2 deletions src/styles/_typography.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
@use './colors';

@mixin font-family {
font-family: 'Source Sans Pro', system-ui, -apple-system, BlinkMacSystemFont,
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
font-family:
'Source Sans Pro',
system-ui,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Open Sans',
'Helvetica Neue',
sans-serif;
}

Expand Down

0 comments on commit ea1d7bc

Please sign in to comment.