Skip to content

Commit 10b431d

Browse files
committed
refine the bottom items of AIGC
1 parent 2b0ab83 commit 10b431d

File tree

2 files changed

+8
-29
lines changed

2 files changed

+8
-29
lines changed

Word-Add-in-AIGC/src/taskpane/components/Home.tsx

+1-21
Original file line numberDiff line numberDiff line change
@@ -348,34 +348,14 @@ export default class Home extends React.Component {
348348
)}
349349
</div>
350350
<div className="bottom">
351-
<div className="item_desc">Explore more resources:</div>
352-
<div className="bottom_item">
353-
<RightOutlined className="item_icon" />
354-
<div className="bottom_item_info">
355-
<a
356-
href="https://github.com/OfficeDev/Word-Scenario-based-Add-in-Samples/tree/main/Word-Add-in-AIGC"
357-
target="_blank"
358-
>
359-
Start your project from this sample
360-
</a>
361-
</div>
362-
</div>
363-
<div className="bottom_item">
364-
<RightOutlined className="item_icon" />
365-
<div className="bottom_item_info">
366-
<a href="https://github.com/OfficeDev/Word-Scenario-based-Add-in-Samples" target="_blank">
367-
See more samples
368-
</a>
369-
</div>
370-
</div>
371351
<div className="bottom_item">
372352
<RightOutlined className="item_icon" />
373353
<div className="bottom_item_info">
374354
<a
375355
href="https://learn.microsoft.com/en-us/office/dev/add-ins/quickstarts/word-quickstart?tabs=yeomangenerator"
376356
target="_blank"
377357
>
378-
Office add-in documentation
358+
Explore more resources
379359
</a>
380360
</div>
381361
</div>

Word-Add-in-AIGC/src/taskpane/css/sample.css

+7-8
Original file line numberDiff line numberDiff line change
@@ -123,27 +123,26 @@ a {
123123
width: 100%;
124124
}
125125

126-
.item_desc {
127-
margin: 0.2rem 1rem;
128-
font-weight: 500;
129-
}
130-
131126
.bottom_item {
132127
width: 100%;
128+
height: 35px;
133129
font-weight: 400;
134130
background-color: white;
135-
margin: 0.3rem 0;
131+
display: flex;
132+
flex-direction: row;
133+
justify-content: flex-start;
134+
align-items: center;
136135
}
137136

138137
.item_icon {
139138
padding-top: 0.1rem;
140139
padding-bottom: 0.1rem;
141-
display: inline-block;
140+
display: inline;
142141
color: var(--blue);
143142
}
144143

145144
.bottom_item_info {
146-
display: inline-block;
145+
display: inline;
147146
font-weight: 500;
148147
}
149148

0 commit comments

Comments
 (0)