12345678910111213141516171819202122232425262728293031323334353637 |
- .TopicAdd {
- width: 100%;
- height: 100%;
- overflow-y: auto;
- overflow-y: overlay;
- border-radius: 10px;
- background-color: #fff;
- padding: 20px 0;
- :global {
- .main {
- position: relative;
- width: 800px;
- padding-left: 5px;
- .addAnswer {
- z-index: 10;
- position: absolute;
- right: 0;
- top: 110px;
- }
- .btnXBox{
- position: absolute;
- z-index: 11;
- top: 280px;
- left: 810px;
- .btnX{
- cursor: pointer;
- height: 32px;
- font-size: 18px;
- line-height: 32px;
- margin-bottom: 24px;
- }
- }
- }
- }
- }
|