Skip to content

Commit 70f252f

Browse files
committed
Style updates.
1 parent f786dc7 commit 70f252f

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-basics",
3-
"version": "0.120.0",
3+
"version": "0.121.0",
44
"description": "Everyday components for React",
55
"license": "MIT",
66
"repository": {

src/components/common/TextOverflow.module.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
}
55

66
.overflow {
7-
display: block;
87
text-overflow: ellipsis;
98
overflow: hidden;
109
white-space: nowrap;

src/components/table/GridTable.module.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
display: contents;
1111
}
1212

13+
.table td {
14+
min-width: 0;
15+
}
16+
1317
.header.row .cell {
1418
border-bottom: 1px solid var(--base400);
1519
}

src/stories/Text.stories.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,3 @@ export const Basic = makeStory(Template, {
3030
children: 'Text',
3131
},
3232
});
33-
34-
export const Overflow = makeStory(Template, {
35-
args: {
36-
children: 'This is long text that should be cut off.',
37-
overflow: true,
38-
},
39-
});

0 commit comments

Comments
 (0)