Skip to content

Commit cd598e8

Browse files
authored
Feat: Aligned more symbol to center (#903)
1 parent f798226 commit cd598e8

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

packages/uui-symbol-more/lib/uui-symbol-more.element.ts

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
1-
import { LitElement, html, css } from 'lit';
1+
import { LitElement, svg, css } from 'lit';
22
import { defineElement } from '@umbraco-ui/uui-base/lib/registration';
33
/**
44
* @element uui-symbol-more
55
*/
66
@defineElement('uui-symbol-more')
77
export class UUISymbolMoreElement extends LitElement {
88
render() {
9-
return html`···`;
9+
return svg`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
10+
<circle cx="17" cy="50" r="9"></circle>
11+
<circle cx="50" cy="50" r="9"></circle>
12+
<circle cx="83" cy="50" r="9"></circle>
13+
</svg>`;
1014
}
1115

1216
static styles = [
1317
css`
1418
:host {
1519
display: inline-block;
16-
font-size: 1.48em;
17-
line-height: 0.8em;
18-
user-select: none;
20+
vertical-align: bottom;
21+
width: 1.15em;
22+
height: 1.15em;
1923
}
2024
`,
2125
];

0 commit comments

Comments
 (0)