Skip to content

Commit 743f0b3

Browse files
authored
fix(ui5-busyindicator): display as size=Large by default (#1315)
1 parent 05175c4 commit 743f0b3

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

packages/main/src/themes/BusyIndicator.css

+5
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,17 @@
4848
align-items: center;
4949
position: relative;
5050
background-color: inherit;
51+
min-width: 8rem;
52+
min-height: 3rem;
5153
}
5254

5355
.ui5-busyindicator-circle {
5456
display: inline-block;
5557
background-color: currentColor;
5658
border-radius: 50%;
59+
width: 1rem;
60+
height: 1rem;
61+
margin: 0 .75rem;
5762
}
5863

5964
.ui5-busyindicator-circle::before {

packages/main/test/pages/BusyIndicator.html

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
</head>
2424

2525
<body style="background-color: var(--sapBackgroundColor);">
26+
<ui5-title>Default (Large) ui5-busyindicator</ui5-title>
27+
<ui5-busyindicator active></ui5-busyindicator>
28+
<br/>
29+
<br/>
30+
31+
<ui5-title>Medium ui5-busyindicator</ui5-title>
2632
<ui5-busyindicator size="Medium" active id="indicator1"></ui5-busyindicator>
2733

2834
<br/>

0 commit comments

Comments
 (0)