feat: changed some stuff around

This commit is contained in:
Nick 2024-11-19 13:17:57 -06:00
parent d03e4d23ee
commit 5afff4a0e4
9 changed files with 25 additions and 24 deletions

View file

@ -6,6 +6,7 @@ import Debate.Types exposing (..)
import Effect exposing (Effect)
import Element exposing (..)
import Element.Border as D exposing (..)
import Element.Events as V exposing (..)
import Element.Font as F
import Html
import Html.Attributes as H exposing (style, title, wrap)
@ -67,7 +68,7 @@ argumentMaker argument =
reductio ->
paragraph (paragraphBoldFormat ++ [ F.size 18 ])
[ text "Reductio: " |> el [ F.color colourTheme.highlightText ]
, text reductio |> el [ F.color colourTheme.nonHighlightedText, F.regular, F.size 16 ]
, text reductio |> el [ F.color colourTheme.nonHighlightedText, F.regular, F.size 16 ], text " " -- create a tooltip for this in the future
]
in
column
@ -76,7 +77,7 @@ argumentMaker argument =
[ newTabLink []
{ url = argument.proofLink
, label = transitionNonHighlightedLinkHover <| text argument.argumentTitle
}
} --create expandable text for this in the future
]
, paragraph (paragraphBoldFormat ++ [ F.size 18 ])
[ text "Proposition: " |> el [ F.color colourTheme.highlightText ]