Remove product description seperators on Brooklyn Theme

I want to remove these lines on the product descriptions on the brooklyn theme:

My store: https://pocketscale.store/products/pocketscale

Hi @AntiEverybody ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss->paste below code at the bottom of the file:
.rte h1:after, .rte .h1:after, .rte h2:after, .rte .h2:after {
    content: none !important;
}
.rte h2, .rte .h2, .rte h3, .rte .h3 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Best regards.

@AntiEverybody

oh sorry for that issue can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.rte h1:after, .rte .h1:after, .rte h2:after, .rte .h2:after { content: none !important;}
.rte h2, .rte .h2, .rte h3, .rte .h3 {margin-top: 20px !important;margin-bottom: 20px !important;}